complex type in javascript and memory allocation

Solutions on MaxInterview for complex type in javascript and memory allocation by the best coders in the world

showing results for - "complex type in javascript and memory allocation"
Bear
31 Apr 2018
1array and objects are complex type
2if assume two array
3  a=[1,2]
4  b= a 
5then we are instructing b to point to a and if any changes is done in b if will affect a as well.
6