add new values to an empty array in javascript code example
Example 1: pushing element in array in javascript
array = ["hello"]
array.push("world");
Example 2: javascript array push
let animals = ["dog","cat","tiger"];
animals.pop(); // ["dog","cat"]
animals.push("elephant"); // ["dog","cat","elephant"]