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