Quantcast
Channel: User Ja͢ck - Stack Overflow
Viewing all articles
Browse latest Browse all 42

Answer by Ja͢ck for Create Array reference with element index instead of value copy

$
0
0

Primitive values, such as numbers, booleans, and strings are copied by value, because they're immutable; conversely, objects, arrays, and functions are copied by reference.

See also: Primitive

This can be demonstrated with a simple example:

let a = [{foo: 0},{bar: 1}];let b = [a[0], 2];a[0].foo = 3;console.log(b);

If you want to copy by reference, you need to copy the whole array, instead of individual values.


Viewing all articles
Browse latest Browse all 42

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>