.push method javascript 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: javascript array push
var SomeRandomArray = [];
SomeRandomArray.push("Hello, world!");
Example 5: javascript array push
let animals = ["dog","cat","tiger"];
animals.pop();
animals.push("elephant");
Example 6: javascript push
const animals = ['pigs', 'goats', 'sheep'];
const count = animals.push('cows');
console.log(count);
console.log(animals);
animals.push('chickens', 'cats', 'dogs');
console.log(animals);