Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
July 28, 2020 12:01 pm GMT

Everything new coming in ES2021

This article was originally posted on my blog. Head over to inspiredwebdev.com for more articles and tutorials. Check out my JavaScript course on Educative to learn everything from ES6 to ES2020.

Every year since 2015, JavaScript has been receiving constant yearly updates to its specification with new interesting features added.

Despite the release of ES2021 still being far in the future, we can already have a look at what's to come since many features already reached stage 4 and will be included in the specification.

For those of you who don't know, there are 4 stages in the proposal process, with the 4th one being the last one which marks the proposal as finished.

As a developer, it's important to stay updated with the new specs of a language and if you feel like you've been left behind by the many updates that JavaScript received in the past years, I can recommend you my book that covers everything from the basics of the language all the way to the latest ES2020 specs, including a little intro to TypeScript. You can read it for free on Github where you will also find links where to buy the ebook or you can check out my course on Educative

Now, let's get started with the first of the new ES2021 features:

String.prototype.replaceAll

String.replace is a useful method that allows us to replace a pattern in a string with something else. The problem is that if we want to use a string as a pattern and not a RegEx, only the first occurrence will get replaced.

const str = 'I like my dog, my dog loves me';const newStr = str.replace('dog', 'cat');newStr;// "I like my cat, my dog loves me"

As the name implies, String.replaceAll will do exactly what we need in this scenario, replace all the matching pattern, allowing us to easily replace all mentions of a substring, without the use of RegEx:

const str = 'I like my dog, my dog loves me';const newStr = str.replaceAll('dog', 'cat');newStr;// "I like my cat, my cat loves me"

Read More

Promise.any

During the past years we've seen new methods such as Promise.all and Promise.race with ES6, Promise.allSettled last year with ES2020 and ES2021 will introduce a new one: Promise.any.

I bet you can already tell what it does from the name of the method.

Promise.any shorts-circuits once a given promise is fulfilled but will continue until all promises are rejected.

Don't get confused with Promise.race because with race, the promise short-circuits once one of the given promises resolves or rejects.

They have similar behavior for what concerns fulfillment but very different for rejection.

If all the promises inside of Promise.any fails, it will throw an AggregateError (a subclass of Error) containing the rejection reasons of all the promises.

We can use it like this:

// example taken from: https://github.com/tc39/proposal-promise-anyPromise.any(promises).then(  (first) => {    // Any of the promises was fulfilled.  },  (error) => {    // All of the promises were rejected.  });

Read More

Logical Operators and Assignment Expressions

With ES2021 we will be able to combine Logical Operators (&&, || and ??) with Assignment Expression (=) similarly to how it's already possible to do in Ruby.

If you skipped on ES2020 you may not be aware of ?? which is the nullish coalescing operator. Let's look at an example:

const a = null ?? 'test';// 'test'const b = 0 ?? 'test';// 0

The nullish coalescing operator returns the right hand-side when the left-hand-side is null or undefined, otherwise it returns the left hand-side. In the first example the left-hand-side was null thus it returned the right-hand-side while on the second example it returned the left-hand-side because it was neither null nor undefined.

Moving back to ES2021 stuff, in JavaScript we already have many assignment opeartors like the following basic example:

let a = 0;a +=2;// 2

But with this new proposal we will be able to do the following:

a ||= b;// equivalent to a = a || bc &&= d;// equivalent to c = c && de ??= f;// equivalent to e = e ?? f

Let's go over each one by one:

  • a ||= b will return a if a is a truthy value, or b if a is falsy
  • c &&= d will return d if both c and d are truthy, or c otherwise
  • e ?? =f will return e if it's null or undefined otherwise it will return f

Read More

Numeric Separators

The introduction of Numeric Separators will make it easier to read numeric values by using the _ (underscore) character to provide a separation between groups of digits.

Let's look at more examples:

x = 100_000;// 100 thousanddollar = 55_90;// 55 dollar 90 centsfraction = 0.000_1;// 1 thousandth

Read more

WeakRefs

From MDN: A weak reference to an object is a reference that does not prevent the object from being reclaimed by the garbage collector.

With this new proposal for ES2021, we will be able to create weak references to objects with the WeakRef class. Please follow the link below to read a more in-depth explanation.

Read More

Intl.ListFormat

The Intl.ListFormat object is a constructor for objects that enable language-sensitive list formatting.

Looking at an example is easier than explaining it:

const list = ['Apple', 'Orange', 'Banana'];new Intl.ListFormat('en-GB', { style: 'long', type: 'conjunction' }).format(list);// Apple, Orange and Banananew Intl.ListFormat('en-GB', { style: 'short', type: 'disjunction' }).format(list);// Apple, Orange or Banana

You are not limited to English, let's try with a few different languages:

const list = ['Apple', 'Orange', 'Banana'];// Italianconsole.log(new Intl.ListFormat('it', { style: 'long', type: 'conjunction' }).format(list));// Apple, Orange e Banana// Spanishconsole.log(new Intl.ListFormat('es', { style: 'long', type: 'conjunction' }).format(list));// Apple, Orange y Banana// Germanconsole.log(new Intl.ListFormat('de', { style: 'long', type: 'conjunction' }).format(list));// Apple, Orange und Banana

Pretty neat uh? For a more detailed look at this specification check out the link below.

Read More

dateStyle and timeStyle options for Intl.DateTimeFormat

We can use dateStyle and timeStyle to request a locale-specific date and time of a given length.

// shortnew Intl.DateTimeFormat("en" , {  timeStyle: "short"}).format(Date.now())// "2:45 PM"// mediumnew Intl.DateTimeFormat("en" , {  timeStyle: "medium"}).format(Date.now())// "2:45:53 PM"// longnew Intl.DateTimeFormat("en" , {  timeStyle: "long"}).format(Date.now())// "2:46:05 PM GMT+7"

Now let's try with dateStyle:

// shortnew Intl.DateTimeFormat("en" , {  dateStyle: "short"}).format(Date.now())// "7/25/20"// mediumnew Intl.DateTimeFormat("en" , {  dateStyle: "medium"}).format(Date.now())// "Jul 25, 2020"// longnew Intl.DateTimeFormat("en" , {  dateStyle: "long"}).format(Date.now())// "July 25, 2020"

You can pass whatever locale you want and you can also pass both dateStyle and timeStyle options at the same time, choosing between the three options of 'short', 'medium', and 'long' that best suit your needs.

Read More

What's the feature you are most excited to try? Leave a comment down below, for me, it's probably the combination of Logical Operators and Assignment Expressions, I love my syntax to be short and clean.

If you want to learn everything about JavaScript from ES6 all the way to ES2020, please check out my book available to read for free on Github. A course is also on Educative


Original Link: https://dev.to/albertomontalesi/everything-new-coming-in-es2021-2l5l

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To