Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lantosgyuri/512899e92c0e2f8d69ebfd338a9a0f51 to your computer and use it in GitHub Desktop.
Save lantosgyuri/512899e92c0e2f8d69ebfd338a9a0f51 to your computer and use it in GitHub Desktop.
const arr = [1,2,3];
const arr2 = [4,5,6,[7], [8]];
console.log(arr.concat(arr2)); // not flattened
console.log([...arr, ...arr2]); // not flattened
console.log(arr.concat(...arr2)); // flattened
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment