JavaScript ES2019 中的 8 個新特性

前言

JavaScript 不斷改進和添加更多功能。TC39 已經完成並批准了 ES2019 的這 8 個功能,它有 4 個階段,這些階段是:javascript

  • Stage 0: Strawman
  • Stage 1: Proposals
  • Stage 2: Drafts
  • Stage 3: Candidates
  • Stage 4: Finished/Approved

如下連接能夠查看Stage 0Stage 1 – 3Final Stagejava

可選的 Catch 綁定

可以在不使用 catch 綁定的地方選擇性地刪除它git

try {
  // trying to use a new ES2019 feature
  // which may not be implemented in other browsers
} catch (unused) {
  // revert back to old way
}
複製代碼

如今能夠刪除未使用的綁定github

try {
  ...
} catch {
  ...
}
複製代碼

JSON 超集

此提議的動機是 JSON 字符串能夠包含未轉義的 U + 2028 LINE SEPARATOR 和 U + 2029 PARAGRAPH SEPARATOR 字符,而 ECMAScript 字符串則不能。在 ES2019 以前,它會產生錯誤SyntaxError: Invalid or unexpected token數組

const LS = eval('"\u2028"');
const PS = eval("'\u2029'");
複製代碼

符號說明

在 ES2015 中引入符號,具備很是獨特的功能。在 ES2019 中,它如今能夠提供給定的描述。其目的是避免間接得到所提供的描述Symbol.prototype.toString函數

const mySymbol = Symbol("myDescription");

console.log(mySymbol); // Symbol(myDescription)

console.log(mySymbol.toString()); // Symbol(myDescription)

console.log(mySymbol.description); // myDescription
複製代碼

Function.prototype.toString - 修訂版

咱們以前已經在函數原型中使用了toString方法,可是在 ES2019 中它已被修改幷包含函數內的註釋,請注意它在Arrow Functions上不起做用。post

function /* comment */ foo /* another comment */() {}

// Before
console.log(foo.toString()); // function foo(){}

// Now ES2019
console.log(foo.toString()); // function /* comment */ foo /* another comment */ (){}

// Arrow Syntax
const bar /* comment */ = /* another comment */ () => {};

console.log(bar.toString()); // () => {}
複製代碼

Object.fromEntries

它是 Object.entries 的反向方法,它也是克隆對象的方法之一ui

const obj = {
  prop1: 1,
  prop2: 2
};

const entries = Object.entries(obj);

console.log(entries); // [ [ 'prop1', 1 ], [ 'prop2', 2 ] ]

const fromEntries = Object.fromEntries(entries);

console.log(fromEntries); // Object { prop1: 1, prop2: 2 }

console.log(obj === fromEntries); // false
複製代碼

注意:任何嵌入式對象/數組都只是經過引用複製。spa

格式良好的 JSON.stringify

這也是由同一我的提出的,而且與 JSON 超集特徵有關 。ES2019 不是將未配對的代理代碼點做爲單個 UTF-16 代碼單元返回,而是用 JSON 轉義序列表示它們prototype

// Before
console.log(JSON.stringify("\uD800")); // "�"

// Now ES2019
console.log(JSON.stringify("\uD800")); // "\ud800"
複製代碼

String.prototype trimStart 和 trimEnd

咱們已經在 String 原型中使用了trim方法,它刪除了字符串開頭和結尾之間的空格。可是如今開始介紹 ES2019 的 trimStarttrimEnd

// Trim
const name = " Codedam ";
console.log(name.trim()); // "Codedam"

// Trim Start
const description = " Unlocks Secret Codes ";
console.log(description.trimStart()); // "Unlocks Secret Codes "

// Trim End
const category = " JavaScript ";
console.log(category.trimEnd()); // " JavaScript"
複製代碼

Array.prototype flat 和 flatMap

flat方法建立一個新數組,全部子數組元素以遞歸方式鏈接到指定的深度。 默認狀況下,深度爲 1,使數組上第一層嵌套數組變平。

const arr = [1, 2, [3, 4, [5, 6]]];
arr.flat(); // [1, 2, 3, 4, [5, 6]]
arr.flat(2); // [1, 2, 3, 4, 5, 6]

// You can use Infinity to flatten all the nested arrays no matter how deep the array is

const arrExtreme = [1, [2, [3, [4, [5, 6, 7, [8, 9]]]]]];
arrExtreme.flat(Infinity); // [1, 2, 3, 4, 5, 6, 7, 8, 9]
複製代碼

flatMap 相似於 flat 而且與 map 相關,其中它映射數組而後將其展平

const arr = ["Codedam", "is Awsome", "!"];

const mapResult = arr.map(item => item.split(" "));
console.log(mapResult); // [ [ 'Codedam' ], [ 'is', 'Awsome' ], [ '!' ] ]

const flatMapResult = arr.flatMap(chunk => chunk.split(" "));
console.log(flatMapResult); // ['Codedam', 'is', 'Awsome', '!'];
複製代碼

其餘

強調一下如今 Stage 3 中的一些有用的即將推出的功能。

最後

原文:8 NEW FEATURES in JavaScript ES2019
做者:Rienz
翻譯:chenyeah.com/posts/a77f9…

相關文章
相關標籤/搜索