Intro; Copyright; Table of Contents; Preface; Section 1. Who Should Read This Book; Section 2. Why Modular JavaScript?; Section 3. How Is This Book Organized?; Section 4. Conventions Used in This Book; Section 5. O'Reilly Safari; Section 6. How to Contact Us; Section 7. Acknowledgments; Chapter 1. M
Practical modern Javascript
β Scribed by Bevacqua, Nicolas
- Publisher
- O'Reilly
- Year
- 2017
- Tongue
- English
- Leaves
- 334
- Series
- Modular JavaScript series
- Edition
- First edition
- Category
- Library
No coin nor oath required. For personal study only.
β¦ Synopsis
"This book explains: how JavaScript and its standards development process have evolved -- Essential ES6 changes, including arrow functions, destructuring, let, and const; class syntax for declaring object prototypes, and the Symbol primitive -- How to handle flow control with Promises, iterators, generators, and async functions -- ES6 collection built-in types for creating object maps and unique sets -- How and when to use the new Proxy and Reflect built-ins -- Changes to Array, Math, numbers, strings, Unicode, and regular expressions, and other improvements since ES5"--;ECMAScript and the future of JavaScript -- ES6 essentials -- Classes, symbols, objects, and decorators -- Iteration and flow control -- Leveraging ECMAScript collections -- Managing property access with proxies -- Built-in improvements in ES6 -- JavaScript modules -- Practical considerations.
β¦ Table of Contents
ECMAScript and the future of JavaScript --
ES6 essentials --
Classes, symbols, objects, and decorators --
Iteration and flow control --
Leveraging ECMAScript collections --
Managing property access with proxies --
Built-in improvements in ES6 --
JavaScript modules --
Practical considerations.
β¦ Subjects
Application software;ECMAScript 2015;JavaScript;JavaScript (Computer program language)
π SIMILAR VOLUMES
To get the most out of modern JavaScript, you need learn the latest features of its parent specification, ECMAScript 6 (ES6). This book provides a highly practical look at ES6, without getting lost in the specification or its implementation details. Armed with practical examples, author Nicolas Beva
<div><p>It's not uncommon these days to see people complaining about just how complex JavaScript development seems to have become. We can have some sympathy with that view when it's coming from someone new to the language. If you're learning JS, it won't take long for you to be exposed to the enormi
It's time for a current, definitive JavaScript book, and in this comprehensive beginner's guide, bestselling author Larry Ullman teaches the language as it is implemented today. Larry demonstrates how to build upon JavaScript's ease of use, while demystifying its often-cryptic syntax, especially for
<p>JavaScript today must interact with data-intensive APIs and networks. The solution is a program that can work <i>asynchronously</i> instead of finishing tasks in order. In modern JavaScript, instead of callbacks you'll use promises to improve your application's performance and responsiveness. Jav