adding an element to an array javascript code example
Example 1: js array add element
array.push(element)
Example 2: append array js
var colors= ["red","blue"];
colors.push("yellow");
Example 3: javascript pushing to an array
some_array = ["John", "Sally"];
some_array.push("Mike");
console.log(some_array);
["John", "Sally", "Mike"]
Example 4: pushing to an array
array = ["hello"]
array.push("world");
console.log(array);
["hello", "world"]
Example 5: javascript array add end
let yourArray = [1, 2, 3];
yourArray.push(4);
Example 6: 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);