const one = [`aaa`, `bbb`, `ccc`] const two = [`ddd`, `eee`, `fff`] You have the above arrays.
How will you merge those into a single array?
You can use concat method.
This method will work in older browsers also.
const megaArray = one.concat(two) There is a new way to do this.
You can use the spread operator in JavaScript.
const megaArray = [...one, ...two] Much cleaner!
Top comments (0)