xxxxxxxxxx
var colors= ["red","blue"];
colors.push("yellow"); //["red","blue","yellow"]
xxxxxxxxxx
const array1 = ['a', 'b', 'c'];
const array2 = ['d', 'e', 'f'];
const array3 = array1.concat(array2);
xxxxxxxxxx
// SPREAD OPERATOR
const list1 = ["pepe", "luis", "rua"];
const list2 = ["rojo", "verde", "azul"];
const newList = [list1, list2];
// ["pepe", "luis", "rua", "rojo", "verde", "azul"]
xxxxxxxxxx
var arr1 = ["Hello"," "];
var arr2 = ["World","!"];
var both = arr1.concat(arr2);
//both = ["Hello"," ","World","!"];
xxxxxxxxxx
// initialize array
var arr = [
"Hi",
"Hello",
"Bonjour"
];
// append new value to the array
arr.push("Hola");
console.log(arr);
Run code snippetHide results
xxxxxxxxxx
// To merge two or more arrays you shuld use concat() method.
const array1 = ['a', 'b', 'c'];
const array2 = ['d', 'e', 'f'];
const array3 = array1.concat(array2);
console.log(array3);
// expected output: Array ["a", "b", "c", "d", "e", "f"]