javascript create array and add to it code example
Example 1: javascript append to array
var colors=["red","white"];
colors.push("blue");
Example 2: pushing to an array
array = ["hello"]
array.push("world");
console.log(array);
["hello", "world"]
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: javascript array push
let animals = ["dog","cat","tiger"];
animals.pop();
animals.push("elephant");