how to add value in array in javascript code example
Example 1: javascript append to array
var colors=["red","white"];
colors.push("blue");
Example 2: javascript pushing to an array
some_array = ["John", "Sally"];
some_array.push("Mike");
console.log(some_array);
["John", "Sally", "Mike"]
Example 3: js add item to array
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");
Example 4: how to add a new item in an array in javascript
let array = ["Chicago", "Los Angeles", "Calgary", "Seattle", ]
console.log(array)
array.push('New Item') < variable_name > .push( < What you want to add > )
console.log("This array has", array.length, "things in it")
Example 5: add value to array javascript
var fruits = ["222", "vvvv", "eee", "eeee"];
fruits.push("Kiwi");
Example 6: js add to array
const myArray = ['hello', 'world'];
myArray.push('foo');
myArray.unshift('bar');
myArray.splice(2, 0, 'there');