Arrays

ES6 adds new properties to the global Array object and to its instances to make working with arrays easier. Arrays in JavaScript lacked features and capabilities when compared with programming languages such as Python and Ruby therefore ES6 enhanced arrays to change that.

The Array.from(iterable, mapFunc, this) method

The Array.from() method creates a new array instance from an iterable object. The first argument is a reference to the iterable object. The second argument is optional and is a callback (known as Map function) that is called for every element of the iterable object. The third argument is also optional and is the value of this inside the Map function.

Here is an example to demonstrate this:

let str = "0123"; let obj = {number: ...

Get React: Building Modern Web Applications now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.