June 2016
Intermediate to advanced
910 pages
18h 59m
English
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() 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: ...Read now
Unlock full access