DEV Community

Cover image for 7 Interesting JavaScript Features in ES2020 That You Should Know
kris
kris

Posted on • Originally published at kriss.io on

7 Interesting JavaScript Features in ES2020 That You Should Know

The world of web development moves fast, particularly in the JavaScript ecosystem. New features, frameworks, and libraries are continually emerging, and the minute you stop learning is the minute your skillset starts to become obsolete. One major part of keeping your JavaScript skills sharp is staying current on the latest features in JavaScript.

So, I thought to write an article on seven interesting features in JavaScript ES2020 that you should know. Let’s see some interesting features in JavaScript.

1. BigInt

BigInt is a built-in object that provides a way to describe whole numbers larger than pow(2,53)-1, which is the highest number JavaScript can reliably represent with the Number primitive and represented by the Number.MAX_SAFE_INTEGER constant. A BigInt is built by appending n to the end of an integer literal or by calling the function BigInt().

BigInt

However we can express very large numbers using BigInt, there are some constraints when BigInt type is used with regular numbers. It cannot be used with methods in the built-in Math object and cannot be associated with instances of Number in operations. They must be used with the same type.

BigInt is not backward compatible with (IEEE754) standards because this number system cannot support very large numbers.

2. Nullish Coalescing

There are some conditions while coding, where you have to check for null or undefined ** values instead of *falsey * values. In JavaScript, falsey values can be like blank strings, the number 0, _ **undefined _, _ null _, _ false _, _ NaN _, etc. Nullish coalescing operator _ ?? _ adds the capability to check for _ nullish _ values instead of _ falsey _ values.

Let’s see how it’s works.

Nullish Coalescing

Looking at this we can clearly say Nullish Coalescing ** ** operator** (??)** is a logical operator that returns its right-hand side operand when its left-hand side operand is _ null _ or _ undefined _, otherwise returns its left-hand side operand.

Contrary to the logical OR ( || ) operator, the left operand is returned if it’s falsey ** value which is not _ **null _ or _ undefined _. See below for an example.

Nullish Coalescing

Looking at the above example, the OR operator always returns a truthy value, whereas the nullish coalescing operator returns a specified value.

3. Dynamic Import

The feature name is also straight forward, that it gives the ability to import the JavaScript files dynamically as modules in your application. This is really like how you do it with Webpack and Babel at the moment.

Dynamic import feature will serve you ship on-demand-request code, without the overhead of Webpack or other module bundlers. This is known as *code splitting, * as the code is addressed in smaller bundles as required.

Look at the following example to understand how we dynamically import _ math.js _ module.

Dynamic Import

Here the _ math.js _ module is lazy loaded particularly when it is needed. This overcomes the initial page load times of our application. It also limits unnecessary module load in every page visit sessions even if the user uses the module feature or not.

Static _ import _ and dynamic import() are both helpful. Each has its own, very distinct, use cases. Use static _ imports _ for beginning paint dependencies, especially for above-the-fold content. Furthermore in other cases, examine loading dependencies on-demand with dynamic import().

4. globalThis

Obtaining the global property in JavaScript has always created some difficulty. This is because many platforms have different ways to access it.

  • Client-side JavaScript uses _ window _ or _ self _
  • Node.js uses _ global _
  • Web workers use _ self _

A novel object called globalThis gives you cross-platform access to the global object in JavaScript.

5. Optional Chaining

The optional chaining syntax allows you to access deeply nested object properties without worrying about whether the property exists or not. If it exists, great! If not,_ ** undefined** _ will be returned.

This works not only on object properties but also on function calls and arrays. Super convenient! Here is an example:

Optional Chaining

6. Promise.allSettled

The _ Promise.allSettled _ method accepts a series of Promises and only resolves when they are all resolved, resolved, or rejected.

This was not natively available before, even though some nearby implementations like _ race _ & _ all _ were available. This brings “Just run all the promises, I don’t care about the results” natively to JavaScript.

Promise.allSettled

7. String#matchAll

_ matchAll _ is a new method added to the _ string _ prototype that is related to regular expressions. This returns an iterator that returns all the matching groups one after the other. Let’s take a look at a quick example:

String#matchAll

Conclusion

I hope you found this article useful and that you are as excited as I am about the new features that are coming to JavaScript. If you want more information about the different functions, you can consult the official GitHub repository of the ES committee Here.

The post 7 Interesting JavaScript Features in ES2020 That You Should Know appeared first on Kriss.

Top comments (0)