Category: Uncategorized

0

Spread Operator in ES6

Spread operator is similar to rest parameter in JavaScript 6. If rest parameter groups a set of arguments to one array, Spread operator distributes an...

0

Arrow Functions in ES6

Arrow functions provide a concise way to define a function in JavaScript. Here I am going to create a new function to multiply 2...