JavaScript更新到了es13了。2022年6月22日,第123屆Ecma大會批准了ECMAScript2022語言規範,這意味著它現在正式成為JavaScript標準;而ECMAScript2022是第13次迭代,因此也可稱為ECMAScript13,簡稱ES13。
前端(vue)入門到精通課程:進入學習
Apipost = Postman + Swagger + Mock + Jmeter 超好用的API偵錯工具:
本教學操作環境:windows7系統、ECMAScript 13版、Dell G3電腦。
新的 ES13 規範終於釋出了。
JavaScript 不是一種開源語言,它是一種需要遵循 ECMAScript 標準規範編寫的語言,TC39 委員會負責討論和批准新功能的釋出, 那TC39他們是誰?
「ECMA International 的 TC39 是一群 JavaScript 開發人員、實施者、學者等,他們與社群合作維護和發展 JavaScript 的定義。」 — TC39.es
他們的釋出過程由五個階段組成,自 2015 年以來,他們一直在進行年度釋出,它們通常發生在春天舉行釋出。
2022 年 6 月 22 日,第 123 屆 Ecma 大會批准了 ECMAScript 2022 語言規範,這意味著它現在正式成為標準。
有兩種方法可以參照任何 ECMAScript 版本:
按年份:這個新版本將是 ES2022。
按其迭代次數:這個新版本將是第 13 次迭代,所以它可以被稱為 ES13。
那麼這次這個版本有什麼新東西呢?我們可以對哪些功能感到興奮?
01、正規表示式匹配索引
目前,在 JavaScript 中使用 JavaScript Regex API 時,僅返回匹配的開始索引。但是,對於一些特殊的高階場景,這還不夠。
作為這些規範的一部分,新增了一個特殊的標誌 d。通過使用它,正規表示式 API 將返回一個二維陣列作為名索引的鍵。它包含每個匹配項的開始和結束索引。如果在正規表示式中捕獲了任何命名組,它將在 indices.groups 物件中返回它們的開始/結束索引, 命名的組名將是它的鍵。
// ✅ a regex with a 'B' named group capture
const expr = /a+(?<B>b+)+c/d;
const result = expr.exec("aaabbbc")
// ✅ shows start-end matches + named group match
console.log(result.indices);
// prints [Array(2), Array(2), groups: {…}]
// ✅ showing the named 'B' group match
console.log(result.indices.groups['B'])
// prints [3, 6]
登入後複製
檢視原始提案,https://github.com/tc39/proposal-regexp-match-indices
02、Top-level await
在此提案之前,不接受Top-level await,但有一些變通方法可以模擬這種行為,但其有缺點。
Top-level await 特性讓我們依靠模組來處理這些 Promise。這是一個直觀的功能。
但是請注意,它可能會改變模組的執行順序, 如果一個模組依賴於另一個具有Top-level await 呼叫的模組,則該模組的執行將暫停,直到 promise 完成。
讓我們看一個例子:
// users.js
export const users = await fetch('/users/lists');
// usage.js
import { users } from "./users.js";
// ✅ the module will wait for users to be fullfilled prior to executing any code
console.log(users);
登入後複製
在上面的範例中,引擎將等待使用者完成操作,然後,再執行 usage.js 模組上的程式碼。
總之,這是一個很好且直觀的功能,需要小心使用,我們不要濫用它。
在此處檢視原始提案。https://github.com/tc39/proposal-top-level-await
03、.at( )
長期以來,一直有人要求 JavaScript 提供類似 Python 的陣列負索引存取器。而不是做 array[array.length-1] 來做簡單的 array[-1]。這是不可能的,因為 [] 符號也用於 JavaScript 中的物件。
被接受的提案採取了更實際的方法。Array 物件現在將有一個方法來模擬上述行為。
const array = [1,2,3,4,5,6]
// ✅ When used with positive index it is equal to [index]
array.at(0) // 1
array[0] // 1
// ✅ When used with negative index it mimicks the Python behaviour
array.at(-1) // 6
array.at(-2) // 5
array.at(-4) // 3
登入後複製
檢視原始提案,https://github.com/tc39/proposal-relative-indexing-method
順便說一句,既然我們在談論陣列,你知道你可以解構陣列位置嗎?
const array = [1,2,3,4,5,6];
// ✅ Different ways of accessing the third position
const {3: third} = array; // third = 4
array.at(3) // 4
array[3] // 4
登入後複製
04、可存取的 Object.prototype.hasOwnProperty
以下只是一個很好的簡化, 已經有了 hasOwnProperty。但是,它需要在我們想要執行的查詢範例中呼叫。因此,許多開發人員最終會這樣做是很常見的:
const x = { foo: "bar" };
// ✅ grabbing the hasOwnProperty function from prototype
const hasOwnProperty = Object.prototype.hasOwnProperty
// ✅ executing it with the x context
if (hasOwnProperty.call(x, "foo")) {
...
}
登入後複製
通過這些新規範,一個 hasOwn 方法被新增到 Object 原型中,現在,我們可以簡單地做:
const x = { foo: "bar" };
// ✅ using the new Object method
if (Object.hasOwn(x, "foo")) {
...
}
登入後複製
檢視原始提案,https://github.com/tc39/proposal-accessible-object-hasownproperty
05、Error Cause
錯誤幫助我們識別應用程式的意外行為並做出反應,然而,理解深層巢狀錯誤的根本原因,正確處理它們可能會變得具有挑戰性,在捕獲和重新丟擲它們時,我們會丟失堆疊跟蹤資訊。
沒有關於如何處理的明確協定,考慮到任何錯誤處理,我們至少有 3 個選擇:
async function fetchUserPreferences() {
try {
const users = await fetch('//user/preferences')
.catch(err => {
// What is the best way to wrap the error?
// 1. throw new Error('Failed to fetch preferences ' + err.message);
// 2. const wrapErr = new Error('Failed to fetch preferences');
// wrapErr.cause = err;
// throw wrapErr;
// 3. class CustomError extends Error {
// constructor(msg, cause) {
// super(msg);
// this.cause = cause;
// }
// }
// throw new CustomError('Failed to fetch preferences', err);
})
}
}
fetchUserPreferences();
登入後複製
作為這些新規範的一部分,我們可以構造一個新錯誤並保留獲取的錯誤的參照。 我們只需將物件 {cause: err} 傳遞給 Errorconstructor。
這一切都變得更簡單、標準且易於理解深度巢狀的錯誤, 讓我們看一個例子:
async function fetcUserPreferences() {
try {
const users = await fetch('//user/preferences')
.catch(err => {
throw new Error('Failed to fetch user preferences, {cause: err});
})
}
}
fetcUserPreferences();
登入後複製
瞭解有關該提案的更多資訊,https://github.com/tc39/proposal-error-cause
06、Class Fields
在此版本之前,沒有適當的方法來建立私有欄位, 通過使用提升有一些方法可以解決它,但它不是一個適當的私有欄位。 但現在很簡單, 我們只需要將 # 字元新增到我們的變數宣告中。
class Foo {
#iteration = 0;
increment() {
this.#iteration++;
}
logIteration() {
console.log(this.#iteration);
}
}
const x = new Foo();
// ❌ Uncaught SyntaxError: Private field '#iteration' must be declared in an enclosing class
x.#iteration
// ✅ works
x.increment();
// ✅ works
x.logIteration();
登入後複製
擁有私有欄位意味著我們擁有強大的封裝邊界, 無法從外部存取類變數,這表明 class 關鍵字不再只是糖語法。
我們還可以建立私有方法:
class Foo {
#iteration = 0;
#auditIncrement() {
console.log('auditing');
}
increment() {
this.#iteration++;
this.#auditIncrement();
}
}
const x = new Foo();
// ❌ Uncaught SyntaxError: Private field '#auditIncrement' must be declared in an enclosing class
x.#auditIncrement
// ✅ works
x.increment();
登入後複製
該功能與私有類的類靜態塊和人體工程學檢查有關,我們將在接下來的內容中看到。
瞭解有關該提案的更多資訊,https://github.com/tc39/proposal-class-fields
07、Class Static Block
作為新規範的一部分,我們現在可以在任何類中包含靜態塊,它們將只執行一次,並且是裝飾或執行類靜態端的某些欄位初始化的好方法。
我們不限於使用一個塊,我們可以擁有儘可能多的塊。
// ✅ will output 'one two three'
class A {
static {
console.log('one');
}
static {
console.log('two');
}
static {
console.log('three');
}
}
登入後複製
他們有一個不錯的獎金,他們獲得對私有欄位的特權存取, 你可以用它們來做一些有趣的模式。
let getPrivateField;
class A {
#privateField;
constructor(x) {
this.#privateField = x;
}
static {
// ✅ it can access any private field
getPrivateField = (a) => a.#privateField;
}
}
const a = new A('foo');
// ✅ Works, foo is printed
console.log(getPrivateField(a));
登入後複製
如果我們嘗試從範例物件的外部範圍存取該私有變數,我們將得到無法從類未宣告它的物件中讀取私有成員#privateField。
瞭解有關該提案的更多資訊,https://github.com/tc39/proposal-class-static-block
08、Private Fields
新的私有欄位是一個很棒的功能,但是,在某些靜態方法中檢查欄位是否為私有可能會變得很方便。
嘗試在類範圍之外呼叫它會導致我們之前看到的相同錯誤。
class Foo {
#brand;
static isFoo(obj) {
return #brand in obj;
}
}
const x = new Foo();
// ✅ works, it returns true
Foo.isFoo(x);
// ✅ works, it returns false
Foo.isFoo({})
// ❌ Uncaught SyntaxError: Private field '#brand' must be declared in an enclosing class
#brand in x
登入後複製
瞭解有關該提案的更多資訊。https://github.com/tc39/proposal-private-fields-in-in
最後的想法
這是一個有趣的版本,它提供了許多小而有用的功能,例如 at、private fields和error cause。當然,error cause會給我們的日常錯誤跟蹤任務帶來很多清晰度。
一些高階功能,如top-level await,在使用它們之前需要很好地理解。它們可能在你的程式碼執行中產生不必要的副作用。
【相關推薦:、】
以上就是JavaScript更新到了es幾的詳細內容,更多請關注TW511.COM其它相關文章!