javascript push a rray append code example
Example 1: js add item to array
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");
Example 2: pushing element in array in javascript
array = ["hello"]
array.push("world");
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");
array = ["hello"]
array.push("world");