array push method code example
Example 1: javascript pushing to an array
some_array = ["John", "Sally"];
some_array.push("Mike");
console.log(some_array);
["John", "Sally", "Mike"]
Example 2: pushing to an array
array = ["hello"]
array.push("world");
console.log(array);
["hello", "world"]
Example 3: push array javascript
let array = ["A", "B"];
let variable = "what you want to add";
array.push(variable);
console.log(array);
Example 4: pushing element in array in javascript
array = ["hello"]
array.push("world");
Example 5: javascript array push
let animals = ["dog","cat","tiger"];
animals.pop();
animals.push("elephant");
Example 6: javascript array push
let items_in_backpack = ['food', 'water', 'flashlight', 'GPS'];
items_in_backpack.push('javascript array push knowledge');