add an element in array javascript 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 adding an array to an array
let chocholates = ['Mars', 'BarOne', 'Tex'];
let chips = ['Doritos', 'Lays', 'Simba'];
let sweets = ['JellyTots'];
let snacks = [];
snacks.concat(chocholates);
snacks.concat(chocolates, chips, sweets);
Example 4: how to push array
var numbers = [1, 2, 3, 4];
numbers.push(5);
var words = ["one", "two", "three", "four"];
words.push("five")
Example 5: js add to array
let arr = [1, 2, 3, 4];
arr = [...arr, 5, 6, 7];
console.log(arr);
Example 6: add item to array javascript
const arr1 = [1,2,3]
const newValue = 4
const newData = [...arr1, obj]