#arrays
Passing Arguments Using Spread
Oct 10, 2019
The spread syntax in javascript allows an iterable (array, strings, or object literals) to expand in places where zero or more arguments are expected. Why is this useful? Let's find out!
Object Destructuring In Javascript
Jul 18, 2019
Object destructuring is a convenient way to extract multiple values from objects and arrays.
Javascript Rest Parameters
Apr 21, 2019
ES6 introduced the rest parameter syntax which you should use instead of the arguments object for a javascript function
Using Sets in Javascript To Remove Duplicates
Apr 12, 2019
Javascript sets were introduced with ES6 and can be leveraged to quickly remove duplicates from an array.