June 2016
Intermediate to advanced
910 pages
18h 59m
English
ES6 introduced a new API, the Reflect API for the object reflection (that is, inspecting and manipulating the properties of objects). Although ES5 already had APIs for the object reflection, these APIs were not well organized and on failure, they used to throw exception. The ES6 Reflect API is well organized and makes it easier to read and write code, as it doesn't throw exceptions on failure. Instead, it returns the Boolean value, representing if the operation was true or false. Since developers are adapting to the Reflect API for the object reflection, it's important to learn this API in depth.
In this chapter, we'll cover:
this valueprototype ...Read now
Unlock full access