push js method code example
Example 1: pushing element in array in javascript
array = ["hello"]
array.push("world");
Example 2: js push array
var array = [];
var element = "anything you want in the array";
array.push(element);
Example 3: push javascript
let fruit = ['apple', 'banana']
fruit.push('cherry')
console.log(fruit)
Example 4: 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);