Skip to content
Scan a barcode
Scan
Added to your cart
Paperback Get Programming with JavaScript Next: New Features of Ecmascript 2015, 2016, and Beyond Book

ISBN: 1617294209

ISBN13: 9781617294204

Get Programming with JavaScript Next: New Features of Ecmascript 2015, 2016, and Beyond

Select Format

Select Condition ThriftBooks Help Icon

Recommended

Format: Paperback

Condition: Very Good

$10.19
Save $29.80!
List Price $39.99
Almost Gone, Only 1 Left!

You Might Also Enjoy

Arithmetic Optimization Techniques for Hardware and Software Design
Arithmetic Optimization Techniques for Hardware and Software Design
Anup Hosangadi, Farzan Fallah, Ryan Kastner

from: $5.29

Data Science from Scratch: First Principles with Python
Data Science from Scratch: First Principles with Python
Joel Grus

from: $31.79

Giraffes Can't Dance
Giraffes Can't Dance
Giles Andreae

from: $3.79

Office 365 All-In-One for Dummies
Office 365 All-In-One for Dummies
Peter Weverka

from: $6.29

Coding All-In-One for Dummies
Coding All-In-One for Dummies
Wiley

from: $9.49

CompTIA A+ Certification All-in-One Exam Guide, Eleventh Edition
CompTIA A+ Certification All-in-One Exam Guide, Eleventh Edition
Travis Everett, Mike Meyers, Andrew Hutz

from: $29.99

Brown Bear, Brown Bear, What Do You See?
Brown Bear, Brown Bear, What Do You See?
Bill Martin Jr., Eric Carle

from: $3.59

Some Future Day: How AI Is Going to Change Everything
Some Future Day: How AI Is Going to Change Everything
Marc Beckman

from: $24.63

CCNA 200-301 Official Cert Guide, Volume 1
CCNA 200-301 Official Cert Guide, Volume 1
Wendell Odom

from: $12.99

The Seven Principles for Making Marriage Work: A Practical Guide from the Country's Foremost Relationship Expert
The Seven Principles for Making Marriage Work: A Practical Guide from the Country's Foremost Relationship Expert
John M. Gottman, Nan Silver

from: $4.99

Comptia Security+ Study Guide: Exam Sy0-601
Comptia Security+ Study Guide: Exam Sy0-601
David Seidl, Mike Chapple

from: $5.49

iPhone For Seniors For Dummies
iPhone For Seniors For Dummies
Dwight Spivey

from: $5.19

CompTIA Security+ Get Certified Get Ahead: SY0-701 Study Guide
CompTIA Security+ Get Certified Get Ahead: SY0-701 Study Guide
Darril Gibson, Joe Shelley

from: $42.80

Tripwire
Tripwire
Lee Child

from: $3.99

Red Team Field Manual
Red Team Field Manual
Ben Clark

from: $4.39

Windows 11 for Beginners and Seniors: A complete user guide on how to use the new windows 11 OS with detailed tips and tricks to get you started with windows 11
Windows 11 for Beginners and Seniors: A complete user guide on how to use the new windows 11 OS with detailed tips and tricks to get you started with windows 11
Donald L McGuire

from: $12.99

American Gods
American Gods
Neil Gaiman, Ana Ban

from: $4.39

Teach Yourself VISUALLY Windows 10 Anniversary Update
Teach Yourself VISUALLY Windows 10 Anniversary Update
Paul McFedries

from: $4.59

Windows 11 for Dummies, 2nd Edition
Windows 11 for Dummies, 2nd Edition
Alan Simpson, Andy Rathbone

from: $18.49

A Clockwork Orange
A Clockwork Orange
Anthony Burgess

from: $5.99

CompTIA A+ Certification All-in-One Exam Guide, Exams 220-901 & 220-902
CompTIA A+ Certification All-in-One Exam Guide, Exams 220-901 & 220-902
Mike Meyers

from: $7.09

Aws Certified Solutions Architect Official Study Guide: Associate Exam
Aws Certified Solutions Architect Official Study Guide: Associate Exam
Joe Baron, Hisham Baz, Biff Gaut, Sean Senior, John Stamper, Tim Bixler, Kevin E Kelly, Kevin E. Kelly

from: $6.19

System Design Interview – An Insider's Guide: Volume 2
System Design Interview – An Insider's Guide: Volume 2
Alex Xu, Sahn Lam

from: $28.09

The Princess Bride
The Princess Bride
William Goldman

from: $7.89

Book Overview

Summary

Get Programming with JavaScript Next introduces the modern age of JavaScript programming with ES6 and ES7 without dragging you through confusing jargon and abstract examples you'll never use. In just 34 quick-fire sessions, you'll quickly be coding with the latest features and functions of ES6 and ES7

Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications.

About the Technology

Great code is readable, bug-free, and maintainable. Modern JavaScript, aka JavaScript Next, makes it much, much easier to write great applications. New features introduced in ES2015 simplify the structure of your JavaScript projects and radically streamline async-oriented tasks like writing reactive applications and microservices.

About the Book

Get Programming with JavaScript Next introduces you to the new features included in the ES2015-and-later JavaScript releases. You'll learn example by example in 34 short lessons, each designed to drive home a specific skill. The coverage is complete: you'll explore new language syntax, declarations, and data types. You'll structure code with modules, replace callbacks with promises, and use classes instead of constructors. Every time you turn a page, complete an exercise, or study a carefully crafted illustration, you'll be one step closer to JavaScript mastery.

What's Inside

New features from ES2015 and laterWriting asynchronous codeCreating custom iterablesTroubleshooting modules and classes
About the Reader

Written for web developers comfortable with standard JavaScript 5 features and coding style.

About the Author

J.D. Isaacks is a seasoned developer, a JavaScript instructor, and an open source maintainer.

Table of Contents

Lesson 1 - ECMAScript specification and the proposal process Lesson 2 - Transpiling with Babel Lesson 3 - Bundling modules with Browserify UNIT 1 - VARIABLES AND STRINGSLesson 4 - Declaring variables with let Lesson 5 - Declaring constants with const Lesson 6 - New string methods Lesson 7 - Template literals Lesson 8 - Capstone: Building a domain-specific language UNIT 2 - OBJECTS AND ARRAYSLesson 9 - New array methods Lesson 10 - Object.assign Lesson 11 - Destructuring Lesson 12 - New object literal syntax Lesson 13 - Symbol-a new primitive Lesson 14 - Capstone: Simulating a lock and key UNIT 3 - FUNCTIONSLesson 15 - Default parameters and rest Lesson 16 - Destructuring parameters Lesson 17 - Arrow functions Lesson 18 - Generator functions Lesson 19 - Capstone: The prisoner's dilemma UNIT 4 - MODULESLesson 20 - Creating modules Lesson 21 - Using modules Lesson 22 - Capstone: Hangman game UNIT 5 - ITERABLESLesson 23 - Iterables Lesson 24 - Sets Lesson 25 - Maps Lesson 26 - Capstone: Blackjack UNIT 6 - CLASSESLesson 27 - Classes Lesson 28 - Extending classes Lesson 29 - Capstone: Comets UNIT 7 - WORKING ASYNCHRONOUSLYLesson 30 - Promises Lesson 31 - Advanced promises Lesson 32 - Async functions Lesson 33 - Observables Lesson 34 - Capstone: Canvas image gallery

Appendix - Exercise answers

Customer Reviews

0 customer rating | 0 review
There are currently no reviews. Be the first to review this work.
Copyright © 2025 Thriftbooks.com Terms of Use | Privacy Policy | Do Not Sell/Share My Personal Information | Cookie Policy | Cookie Preferences | Accessibility Statement
ThriftBooks ® and the ThriftBooks ® logo are registered trademarks of Thrift Books Global, LLC
GoDaddy Verified and Secured