Javascript - Three point - Spread and Rest

About

The three points may refer to:

Syntax

Spread

The spread syntax 1) allows an expression to be expanded in places where multiple arguments (for function calls) or multiple elements (for array literals) or multiple variables (for destructuring assignment) are expected.

Spread syntax can be applied only to iterable objects

  • For function calls:
myFunction(...iterableObj);
  • For array literals:
[...iterableObj, 4, 5, 6];

Rest

The rest parameter 2) syntax allows to represent an indefinite number of arguments as an array.

  • For function definition:
function f(a, b, ...theArgs) {
  // ...
}

where:

Documentation / Reference


Powered by ComboStrap