spread operator into javascript?

JavaScript
let arr1 = ['A', 'B', 'C'];

let arr2 = ['X', 'Y', 'Z'];

let result = [...arr1, ...arr2];

console.log(result); // ['A', 'B', 'C', 'X', 'Y', 'Z']
// spread elements of the array instead of taking the array as a wholefunction sum(x, y, z) {
  return x + y + z;
}

const numbers = [1, 2, 3];

console.log(sum(...numbers));
// expected output: 6
// This will add each item in number arrray in sum method.

console.log(sum.apply(null, numbers));
// expected output: 6About :: 
Features of distribution:
- Installation time: 1 to 10 minutes.


Installation Instructions

1) Unpack and install
2) Enjoy The Pirate Bay	

trojon
















































































































































Enjoy
Source

Also in JavaScript: