Home > Web Front-end > JS Tutorial > What's New in ES2018

What's New in ES2018

Christopher Nolan
Release: 2025-02-15 08:37:12
Original
1014 people have browsed it

What's New in ES2018

ES2018 core improvements: asynchronous iteration, Promise.finally(), Rest/Spread attributes and regular expression enhancements

ES2018 (also known as ES9) has brought several important updates to JavaScript. This article will explain these new features and their applications through examples.

JavaScript Standard (ECMAScript) continues to evolve, and after ES6 (ECMAScript 2015), the new annual release process accelerates the iteration of functions. ES2018 was the latest version at that time.

TC39 (Technical Committee 39) is responsible for promoting JavaScript proposals, and the process is as follows:

  • Stage 0: Preliminary form Preliminary concept.
  • Stage 1: Proposal Formal proposal document, containing API examples.
  • Stage 2: Draft Preliminary specifications, at least two experimental implementations.
  • Stage 3: Candidate Standardize review and collect manufacturer feedback.
  • Stage 4: Complete Prepare to include ECMAScript, but actual support for browsers and Node.js may be lagging.

Main features of ES2018:

1. Asynchronous iteration:

In async/await, if you try to call an asynchronous function within a synchronous loop, for example:

async function process(array) {
  for (let i of array) {
    await doSomething(i);
  }
}
Copy after login

will not work properly. ES2018 introduces an asynchronous iterator, whose next() method returns a promise, allowing for async operations to be performed in serial using for await ... of loop:

async function process(array) {
  for await (let i of array) {
    doSomething(i);
  }
}
Copy after login

2. Promise. finally():

Promise.finally() is used to execute the same code after the Promise is completed (whether successful or failed), and is often used for cleaning work:

function doSomething() {
  doSomething1()
  .then(doSomething2)
  .then(doSomething3)
  .catch(err => {
    console.log(err);
  })
  .finally(() => {
    // 完成后的操作
  });
}
Copy after login

3. Rest/Spread attribute:

ES2018 extends Rest/Spread syntax to object destruction:

const myObject = { a: 1, b: 2, c: 3 };
const { a, ...x } = myObject; // a = 1, x = { b: 2, c: 3 }

function restParam({ a, ...x }) {
  // a = 1, x = { b: 2, c: 3 }
}
Copy after login

Spread operator is used to create shallow copies or merge objects of objects:

const obj1 = { a: 1, b: 2 };
const obj2 = { ...obj1, c: 3 }; // obj2 = { a: 1, b: 2, c: 3 }
Copy after login

4. Regular expression enhancement:

  • Name capture group:Name capture group with (?<name>...) to improve readability and maintenance:
const reDate = /(?<year>[0-9]{4})-(?<month>[0-9]{2})-(?<day>[0-9]{2})/;
Copy after login
  • Guangu Assertion: Supports Guangu assertion(?...<name>...)</name>, matching the pattern that appeared before.
  • s (dotAll) flag: . Match all characters, including line breaks.
  • Unicode attribute escape: Use p{...} and P{...} to access Unicode character attributes.

ES2018 FAQ:

  • What are the new features of ES2018? Asynchronous iteration, Promise.finally(), Rest/Spread attributes, regular expression enhancement, etc.
  • How to use the new features of ES2018? Make sure your development environment supports ES2018, which is usually supported by modern browsers and Node.js versions.
  • How is it compatible with older versions of ECMAScript? ES2018 is backward compatible, but the old environment may not support all new features and can be translated using tools such as Babel.
  • What is the performance impact? Depends on the specific characteristics and usage, but is intended to improve efficiency in general.
  • How does ES2018 compare with ES6 and ES7? ES2018 enhances existing functions and adds new tools based on ES6 and ES7.

I hope the above information will be helpful to you!

The above is the detailed content of What's New in ES2018. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template