DEV Community

Cover image for I Built an App That Uses All 7 New Features in JavaScript ES2020
Tyler Hawkins
Tyler Hawkins

Posted on • Updated on • Originally published at levelup.gitconnected.com

I Built an App That Uses All 7 New Features in JavaScript ES2020

The world of web development moves fast, especially in the JavaScript ecosystem. New features, frameworks, and libraries are constantly emerging, and the minute you stop learning is the minute your skill set starts to become obsolete.

One important part of keeping your JavaScript skills sharp is staying current on the latest features in JavaScript. So, I thought it would be fun to build an app that incorporates all seven of the new features in JavaScript ES2020.


I recently did a bit of bulk shopping at Costco to stock up on some food essentials. Like most stores, their price tags display the unit price for each item, so you can assess and compare the quality of each deal. Do you go with the small bag or the large bag? (Who am I kidding? It's Costco. Go large!)

But what if the unit price wasn't displayed?

In this article, I'll build a unit price calculator app using vanilla JavaScript for the front end and Node.js with Express.js for the back end. I'll deploy the app on Heroku, which is an easy place to quickly deploy a node.js app.


What's New in JavaScript ES2020?

The JavaScript programming language conforms to a specification known as ECMAScript. Starting with the release of ES2015 (or ES6), a new version of JavaScript has been released each year. As of right now, the latest version is ES2020 (ES11). ES2020 is packed with seven exciting new features that JavaScript developers have been waiting for quite some time to see. The new features are:

  1. Promise.allSettled()
  2. Optional Chaining
  3. Nullish Coalescing
  4. globalThis
  5. Dynamic Imports
  6. String.prototype.matchAll()
  7. BigInt

You should note that not all browsers support these features — yet. If you want to start using these features now, make sure you provide appropriate polyfills or use a transpiler like Babel to ensure your code is compatible with older browsers.


Getting Started

If you want to follow along with your own copy of the code, first create a Heroku account and install the Heroku CLI on your machine. See this Heroku guide for installation instructions.

Once you’ve done that, you can create and deploy the project easily using the CLI. All of the source code needed to run this example app is available on GitHub.

Below are step-by-step instructions on how to clone the repo and deploy to Heroku:

git clone https://github.com/thawkin3/unit-price-calculator.git
cd unit-price-calculator 
heroku create
git push heroku master
heroku open
Enter fullscreen mode Exit fullscreen mode

System Overview

My unit price calculator app is fairly simple: it lets you compare various price and weight options for fictional products and then calculates the unit price. When the page loads, it fetches product data from the server by hitting two API endpoints. You can then choose your product, your preferred unit of measurement, and a price/weight combination. The unit price calculation is done once you hit the submit button.

Unit Price Calculator App

Unit Price Calculator App

Now that you've seen the app, let's take a look at how I used all seven of those ES2020 features. For each feature, I'll discuss exactly what it is, how it's useful, and how I used it.


1. Promise.allSettled()

When a user first visits the calculator app, three API requests are kicked off to fetch product data from the server. We wait for all three requests to finish by using Promise.allSettled():

Promise.allSettled() is a new feature that improves upon the existing Promise.all() functionality. Both of these methods allow you to provide an array of promises as an argument, and both methods return a promise.

The difference is that Promise.all() will short-circuit and reject itself early if any of the promises are rejected. On the other hand, Promise.allSettled() waits for all of the promises to be settled, regardless of whether they are resolved or rejected, and then resolves itself.

So if you want the results from all your promises, even if some of the promises are rejected, then start using Promise.allSettled().

Let's look at another example with Promise.all():

And now let's look at another example with Promise.allSettled() to note the difference in behavior when a promise gets rejected:


2. Optional Chaining

Once the product data is fetched, we handle the response. The data coming back from the server contains an array of objects with deeply-nested properties. In order to safely access those properties, we use the new optional chaining operator:

Optional chaining is the feature I'm most excited about in ES2020. The optional chaining operator -- ?. -- allows you to safely access deeply-nested properties of an object without checking for the existence of each property.

For example, prior to ES2020, you might write code that looks like this in order to access the street property of some user object:

In order to safely access the street property, you first must make sure that the user object exists and that the address property exists, and then you can try to access the street property.

With optional chaining, the code to access the nested property is much shorter:

If at any point in your chain a value does not exist, undefined will be returned. Otherwise, the return value will be the value of the property you wanted to access, as expected.


3. Nullish Coalescing

When the app loads, we also fetch the user's preference for their unit of measurement: kilograms or pounds. The preference is stored in local storage, so the preference won't yet exist for first-time visitors. To handle either using the value from local storage or defaulting to using kilograms, we use the nullish coalescing operator:

The nullish coalescing operator -- ?? -- is a handy operator for when you specifically want to use a variable's value as long as it is not undefined or null. You should use this operator rather than a simple OR -- || -- operator if the specified variable is a boolean and you want to use its value even when it's false.

For example, say you have a toggle for some feature setting. If the user has specifically set a value for that feature setting, then you want to respect his or her choice. If they haven't specified a setting, then you want to default to enabling that feature for their account.

Prior to ES2020, you might write something like this:

With the nullish coalescing operator, your code is much shorter and easier to understand:


4. globalThis

As mentioned above, in order to get and set the user's preference for unit of measurement, we use local storage. For browsers, the local storage object is a property of the window object. While you can just call localStorage directly, you can also call it with window.localStorage. In ES2020, we can also access it through the globalThis object (also note the use of optional chaining again to do some feature detection to make sure the browser supports local storage):

The globalThis feature is pretty simple, but it solves many inconsistencies that can sometimes bite you. Simply put, globalThis contains a reference to the global object. In the browser, the global object is the window object. In a node environment, the global object is literally called global. Using globalThis ensures that you always have a valid reference to the global object no matter what environment your code is running in. That way, you can write portable JavaScript modules that will run correctly in the main thread of the browser, in a web worker, or in the node environment.


5. Dynamic Imports

Once the user has chosen a product, a unit of measurement, and a weight and price combination, he or she can click the submit button to find the unit price. When the button is clicked, a JavaScript module for calculating the unit price is lazy loaded. You can check the network request in the browser's dev tools to see that the second file isn't loaded until you click the button:

Prior to ES2020, using an import statement in your JavaScript meant that the imported file was automatically included inside the parent file when the parent file was requested.

Bundlers like webpack have popularized the concept of "code splitting," which is a feature that allows you to split your JavaScript bundles into multiple files that can be loaded on demand. React has also implemented this feature with its React.lazy() method.

Code splitting is incredibly useful for single page applications (SPAs). You can split your code into separate bundles for each page, so only the code needed for the current view is downloaded. This significantly speeds up the initial page load time so that end users don't have to download the entire app upfront.

Code splitting is also helpful for large portions of rarely-used code. For example, say you have an "Export PDF" button on a page in your app. The PDF download code is large, and including it when the page loads reduces overall load time. However, not every user visiting this page needs or wants to export a PDF. To increase performance, you can make your PDF download code be lazy loaded so that the additional JavaScript bundle is only downloaded when the user clicks the "Export PDF" button.

In ES2020, dynamic imports are baked right into the JavaScript specification!

Let's look at an example setup for the "Export PDF" functionality without dynamic imports:

And now let's look at how you could use a dynamic import to lazy load the large PDF download module:


6. String.prototype.matchAll()

When calling the calculateUnitPrice method, we pass the product name and the price/weight combination. The price/weight combination is a string that looks like "$200 for 10 kg". We need to parse that string to get the price, weight, and unit of measurement. (There's certainly a better way to architect this app to avoid parsing a string like this, but I'm setting it up this way for the sake of demonstrating this next feature.) To extract the necessary data, we can use String.prototype.matchAll():

There's a lot going on in that one line of code. We look for matches in our string based on a regular expression that is searching for digits and the strings "lb" or "kg". It returns an iterator, which we can then spread into an array. This array ends up with three elements in it, one element for each match (200, 10, and "kg").

This feature is probably the most difficult to understand, particularly if you're not well-versed in regular expressions. The short and simple explanation of String.prototype.matchAll() is that it's an improvement on the functionality found in String.prototype.match() and RegExp.prototype.exec(). This new method allows you to match a string against a regular expression and returns an iterator of all the matching results, including capture groups.

Did you get all that? Let's look at another example to help solidify the concept:


7. BigInt

Finally, we'll make the unit price calculation by simply dividing the price by the weight. You can do this with normal numbers, but when working with large numbers, ES2020 introduces the BigInt which allows you to do calculations on large integers without losing precision. In the case of our app, using BigInt is overkill, but who knows, maybe our API endpoint will change to include some crazy bulk deals!

If you've ever worked with data that contains extremely large numbers, then you know what a pain it can be to ensure the integrity of your numeric data while performing JavaScript math operations. Prior to ES2020, the largest whole number you could safely store was represented by Number.MAX_SAFE_INTEGER, which is 2^53 - 1.

If you tried to store a number larger than that value in a variable, sometimes the number wouldn't be stored correctly:

The new BigInt data type helps solve this problem and allows you to work with much larger integers. To make an integer a BigInt, you simply append the letter n to the end of the integer or call the function BigInt() on your integer:


Conclusion

That's it! Now that you know all about the new ES2020 features, what are you waiting for? Get out there and start writing new JavaScript today!

Top comments (2)

Collapse
 
verygooddog profile image
Alia

I've been waiting on nullish coalescing and BigInts for a while and I'm excited it's (hopefully) coming soon.
Also, if I recall correctly, BigInts can't interoperate with regular Numbers, did the spec change?

Collapse
 
thawkin3 profile image
Tyler Hawkins

Right?? Nullish coalescing and optional chaining have been the ones I've been most excited about.

For BigInt, you're right, you can't mix a BigInt with a normal number. So if you want to do some operation on a BitInt and a number, you need to convert one of them to the other format.

So for instance, you can't do:

const aBigInt = BigInt(100)
const aNumber = 50
const result = aBigInt + aNumber // incorrect!

But you could do:

const result = aBigInt + BigInt(aNumber)

Or:

const result = Number(aBigInt) + aNumber