add value javascript array code example
Example 1: javascript append to array
var colors=["red","white"];
colors.push("blue");//append 'blue' to colors
Example 2: javascript array add
// example:
let yourArray = [1, 2, 3];
yourArray.push(4); // yourArray = [1, 2, 3, 4]
// syntax:
// <array-name>.push(<value-to-add>);
Example 3: how can add to array javascript
var fruits = ["Banana", "Orange", "Apple", "Mango"];
f
dsf
fruits.push("Kiwi");