array.push js polyfill code example
Example 1: javascript array push
let animals = ["dog","cat","tiger"];
animals.pop(); // ["dog","cat"]
animals.push("elephant"); // ["dog","cat","elephant"]
Example 2: javascript array push
let arr = ["hello"];
arr.push("hi");