<aside> ð Recording 27mins
</aside>
<aside> âïļ
.length
for
loop to print out the items in your arrayfor..of
loop to print out the items in your array.toString()
method to print out the items of your array.join()
method to print out the items in your array using ;
as a separator.includes()
</aside>
<aside> âïļ *What is this code going to show? `let fruits = ["Apples", "Pear", "Orange"];
// push a new value into the "copy" let shoppingCart = fruits; shoppingCart.push("Banana");
// what's in fruits? alert( fruits.length ); // ?`*
</aside>
<aside> ð Recording 33mins
</aside>
<aside> ð§ Can you make an array of your classmates? Imagine each classmate is an Object ðĪŠ (write it down either on your notebook or on the computer)
</aside>