push an array javascript code example
Example 1: pushing to an array
array = ["hello"]
array.push("world");
console.log(array);
//output =>
["hello", "world"]
Example 2: 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']