What is … in ES6?

The … in ES6 is called a spread operator. It is used to access multiple elements in an object.

EXAMPLE:

var container = [1, 2, 3];
var nextContainer = [...container, 4, 5, 6];
console.log(nextContainer);

More examples in the future once I start using them in future use cases for our platform.