Skip to content
Hou - Engineer & Tech Educator

Introduction to Node.js Part III - JavaScript Essentials Review

Node.js, JavaScript, ES6, intermediate, tutorial, intro-to-node-js3 min read

Introduction

Welcome to the third part of the six-part Introduction to Node.js tutorial series. By the end of this tutorial, you will be able to:

  • Explain the history and significance of ES6
  • Utilize ES6 on the browser and on the server (Node.js)
  • Leverage ES6 features to write more concise and performant JavaScript

This tutorial assumes that you're familiar with basic JavaScript.

Lesson Outline

  • Starter Code

  • ES6 Background

  • ES6 Concepts

    • JavaScript Variables - var, let, const
      • Variable Update
      • Variable Scope
      • Variable Hoisting
    • Strings
      • New String Methods
      • Template Literals
    • ES6 Functions: Arrow Functions
    • Destructuring
      • Destructuring Objects
      • Destructuring Arrays
      • Destructuring Parameters
    • Rest Parameters and Spread Syntax with ...
    • Modules
      • Using Single Exports
      • Using Multiple Exports
      • Importing Modules
      • Using a Module Loader or Bundler
    • Enhanced Object Literals
      • Shorthand for initializing property values
      • Shorthand for writing methods
      • Computed property key
    • Asynchronous Programming with Async/Await
    • Closures
  • Resources

  • Review

  • Key Takeaways

  • What's next

Starter Code

Before diving into Node.js, let's review several key JavaScript programming concepts that are essential to understanding the rest of the tutorials in this series.

Throughout this tutorial, you will be asked to think about the possible output of running certain code snippets, so make sure to get your favorite code editor or a browser-based IDE like repl.it or CodeSandbox ready.

ES6 Background

ES6, which stands for ECMAScript 6, is the 6th version of ECMAScript. It was published in 2015, so it's also known as ECMAScript 2015. ECMAScript provides a standard for JavaScript.

Why use ES6? As you will see, it offers more concise and intuitive syntax, including template strings, arrow functions, modules, and classes. Its language features help make code more readable.

Modern web browsers can readily execute ES5, but ES6 doesn’t yet have full browser compatibility yet. To use the complete set of ES6 features today, you will need to transpile (or rewrite) your code back down to ES5 so it can be interpreted by current browsers. Transpiler tools like Babel and Traceur help make this process easier. You can use either tool to transpire ES6 either in the browser or the server.

JavaScript is a constantly evolving language. With each new version of ECMAScript released, improved language features are being introduced to make a developer's life easier.

Resources:

Review

Take a moment to reflect on what you’ve learned in this tutorial and answer the following questions:

  • What are some benefits of using the arrow function?

  • What are some differences between var, let and const?

  • What is the benefit of using destructuring?

  • What does the spread ... operator do?

  • What are ES6 modules?

  • What is the benefit of using async/await to perform asynchronous actions?

Key takeaways

  • Arrow functions were introduced in ES6 and provide a simpler syntax for creating functions along with a more intuitive handling of this. With arrow functions, the this keyword always represents the object that defined the arrow function.

  • var variables can be updated and re-declared within its scope. let variables can be updated but not re-declared within its scope. const variables can neither be updated nor re-declared within its scope. var is globally or function-scoped, whereas const and let are blocked-scoped, so a variable declared within a block (e.g., the space in-between of the curly brackets of an if...else statement) can only be accessed within that block.

  • The destructuring syntax allows you to easily extract data from arrays or objects into separate variables.

  • The spread ... syntax allows you to make a shallow copy of an object.

  • Modules allow developers to organize their codebase within separate files or components for better reusability, flexibility, shareability, and overall maintenance. Multiple modules can be composed together to create an application.

  • async/await statements simplify the syntax for making asynchronous calls with JavaScript. They make asynchronous code look like synchronous code. They help us avoid deeply nested promise chains that may quickly lead to messy code.

What’s next?

Now you are familiar with some of the latest JavaScript ES6 features. In Part 4, you’ll learn how to build a RESTful API using Express, which is a popular server-side framework for building web applications on Node.js.

Continue to Part 4

Want more content like this? Subscribe to get the latest updates in your inbox

Share your feedback

What did you like or didn't like about this post? Let me know what worked well and what can be improved. Your feedback is much appreciated!