js add to an array code example
Example 1: javascript append to array
var colors=["red","white"];
colors.push("blue");
Example 2: javscript append item from array
let foo = ['oop','plop','copo'];
foo.push("plop");
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: js add item to array
const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");
Example 5: add item to array javascript
const arr1 = [1,2,3]
const newValue = 4
const newData = [...arr1, obj]