javascript how to add element in array code example
Example 1: javascript append to array
var colors=["red","white"];
colors.push("blue");
Example 2: append array js
var colors= ["red","blue"];
colors.push("yellow");
Example 3: javascript append element to array
var colors= ["red","blue"];
colors.push("yellow");
Example 4: js add element to array
var fruits = [ "Orange", "Apple", "Mango"];
fruits.push("Banana");
Example 5: add value to array javascript
var fruits = ["222", "vvvv", "eee", "eeee"];
fruits.push("Kiwi");
Example 6: push javascript
let fruit = ['apple', 'banana']
fruit.push('cherry')
console.log(fruit)