javascript concat

JavaScript
let chocholates = ['Mars', 'BarOne', 'Tex'];
let chips = ['Doritos', 'Lays', 'Simba'];
let sweets = ['JellyTots'];

let snacks = [];
snacks.concat(chocholates);
// snacks will now be ['Mars', 'BarOne', 'Tex']
// Similarly if we left the snacks array empty and used the following
snacks.concat(chocolates, chips, sweets);
//This would return the snacks array with all other arrays combined together
// ['Mars', 'BarOne', 'Tex', 'Doritos', 'Lays', 'Simba', 'JellyTots']
const array1 = ['a', 'b', 'c'];
const array2 = ['d', 'e', 'f'];
const array3 = [...array1, ...array2];

console.log(array3);
// expected output: Array ["a", "b", "c", "d", "e", "f"]let arr1 = [0, 1, 2];
let arr2 = [3, 5, 7];
let primes = arr1.concat(arr2);

// > [0, 1, 2, 3, 5, 7]string.concat(string1, string2, ..., stringX)var str1 = "Hello ";
var str2 = "world!";
var res = str1.concat(str2);
console.log(res);var arr = [1, 2, 3, 4];
var arr2 = [5, 6, 7, 8];

const both = arr.concat(arr2);

console.log(both);
//[1, 2, 3, 4, 5, 6, 7, 8]
Source

Also in JavaScript: