js push many to array code example
Example 1: javascript array push
// JS array .push() method
let items_in_backpack = ['food', 'water', 'flashlight', 'GPS']; // Our starting array
items_in_backpack.push('javascript array push knowledge'); // Adds the <<< string to the array items_in_backpack
// Now the array is:
// ['food', 'water', 'flashlight', 'GPS', 'javascript array push knowledge']
Example 2: javascript add multiple items to array
var a = [];
a.push(1, 2, 3);
console.log(a);