javascript add data to array 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: pushing to an array
array = ["hello"]
array.push("world");
console.log(array);
["hello", "world"]
Example 4: javascript append to array
arr = [1, 2, 3, 4]
arr.push(5)
arr.unshift(0)
Example 5: add new element in array javascript
stack over flow