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