how to push in array js code example
Example 1: pushing element in array in javascript
array = ["hello"]
array.push("world");
Example 2: javascript array push
var SomeRandomArray = [];
SomeRandomArray.push("Hello, world!");
Example 3: javascript array push
let animals = ["dog","cat","tiger"];
animals.pop(); // ["dog","cat"]
animals.push("elephant"); // ["dog","cat","elephant"]