Get Programming with JavaScript Next
eBook - ePub

Get Programming with JavaScript Next

New features of ECMAScript 2015, 2016, and beyond

  1. 376 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Get Programming with JavaScript Next

New features of ECMAScript 2015, 2016, and beyond

About this book

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 later
  • Writing asynchronous code
  • Creating custom iterables
  • Troubleshooting 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 STRINGS

  • Lesson 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 ARRAYS

  • Lesson 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 - FUNCTIONS

  • Lesson 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 - MODULES

  • Lesson 20 - Creating modules
  • Lesson 21 - Using modules
  • Lesson 22 - Capstone: Hangman game
  • UNIT 5 - ITERABLES

  • Lesson 23 - Iterables
  • Lesson 24 - Sets
  • Lesson 25 - Maps
  • Lesson 26 - Capstone: Blackjack
  • UNIT 6 - CLASSES

  • Lesson 27 - Classes
  • Lesson 28 - Extending classes
  • Lesson 29 - Capstone: Comets
  • UNIT 7 - WORKING ASYNCHRONOUSLY

  • Lesson 30 - Promises
  • Lesson 31 - Advanced promises
  • Lesson 32 - Async functions
  • Lesson 33 - Observables
  • Lesson 34 - Capstone: Canvas image gallery
  • Appendix - Exercise answers

Frequently asked questions

Yes, you can cancel anytime from the Subscription tab in your account settings on the Perlego website. Your subscription will stay active until the end of your current billing period. Learn how to cancel your subscription.
No, books cannot be downloaded as external files, such as PDFs, for use outside of Perlego. However, you can download books within the Perlego app for offline reading on mobile or tablet. Learn more here.
Perlego offers two plans: Essential and Complete
  • Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
  • Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Both plans are available with monthly, semester, or annual billing cycles.
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Yes! You can use the Perlego app on both iOS or Android devices to read anytime, anywhere — even offline. Perfect for commutes or when you’re on the go.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Yes, you can access Get Programming with JavaScript Next by JD Isaacks in PDF and/or ePUB format, as well as other popular books in Computer Science & Programming in JavaScript. We have over one million books available in our catalogue for you to explore.

Table of contents

  1. Copyright
  2. Brief Table of Contents
  3. Table of Contents
  4. Preface
  5. Acknowledgments
  6. About this book
  7. About the author
  8. Lesson 1. ECMAScript specification and the proposal process
  9. Lesson 2. Transpiling with Babel
  10. Lesson 3. Bundling modules with Browserify
  11. Unit 1. Variables and strings
  12. Unit 2. Objects and arrays
  13. Unit 3. Functions
  14. Unit 4. Modules
  15. Unit 5. Iterables
  16. Unit 6. Classes
  17. Unit 7. Working asynchronously
  18. Appendix. Exercise answers
  19. Here’s a preview of some of the new syntaxes you’ll learn in unit 2
  20. Here’s a preview of using promises and async functions from unit 7
  21. Index
  22. List of Figures
  23. List of Tables
  24. List of Listings