add an array to an 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 append element to array
var colors= ["red","blue"];
colors.push("yellow");
Example 4: 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 5: javascript add element to array
const langages = ['Javascript', 'Ruby', 'Python'];
langages.push('Go');
const dart = 'Dart';
langages = [...langages, dart];
Example 6: how to insert a value into an array javascript
var list = ["foo", "bar"];
list.push("baz");
["foo", "bar", "baz"]