add value in array in javascript code example
Example 1: javascript insert item into array
var colors=["red","blue"];
var index=1;
colors.splice(index, 0, "white");
Example 2: javascript pushing to an array
some_array = ["John", "Sally"];
some_array.push("Mike");
console.log(some_array);
["John", "Sally", "Mike"]
Example 3: pushing to an array
array = ["hello"]
array.push("world");
console.log(array);
["hello", "world"]
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: js add to array
const myArray = ['hello', 'world'];
myArray.push('foo');
myArray.unshift('bar');
myArray.splice(2, 0, 'there');