logo

The Spread Operator

June 7, 2021

Spread syntax allows an iterable such as an array, an object or a string to be expanded by using `...`.

Read More

Object Destructuring

May 1, 2021

Destructuring is used whenever we need to basically get some data out of an object or out of an array. In other words, is a short, clean syntax for unpacking values from arrays and properties from objects into distinct variables.

Read More

Array destructuring

December 29, 2020

Destructuring is used whenever we need to basically get some data out of an object or out of an array. In other words, it is a short, clean syntax for unpacking values from arrays and properties from objects and putting them into named variables.

Read More

The Arguments Object

December 26, 2020

The arguments object is available in every function you write, except arrow functions. It contains all the arguments passed to it.

Read More