216 B
216 B
importance: 3
Is array copied?
What this code is going to show?
let fruits = ["Apples", "Pear", "Orange"];
let shoppingCart = fruits;
shoppingCart.push("Banana");
alert( fruits.length ); // ?