JavaScript版本历史

JavaScript诞生于1995年,并在1997年成为ECMA标准。
ECMAScript是JavaScript的官方名称。
参考资料:

2022(es13)

// todo

2021(es12)

1. String.prototype.replaceAll

旧的写法

'x'.replace('', '_');
// → '_x'
'xxx'.replace(/(?:)/g, '_');
// → '_x_x_x_'

新的写法

'xxx'.replaceAll('', '_');
// → '_x_x_x_'

2. Promise.any

Promise.any是对Promise.rase的一个补充。

Promise.rase可以同时执行多个异步函数,执行快的函数返回值返回给Promise.rase。如:

function runAsync1() {
    var res = new Promise (function(resolve, reject) {
        setTimeout(function() {
            resolve("function 1")
        },3000)
    });
    return res;
}

Promise
    .race([runAsync1(),runAsync2(),runAsync3()])
    .then(function(result) {
        console.log(result)
    })

# 如果runAsync1执行的快,则
// function 1

Promise.any则是会返回第一个成功执行的Promise回调。

3. WeakRefs

WeakRef直译为弱引用,核心目的是加强GC减少大量内存的开销。

MDN提议尽量不要使,文档指出GC在一个JavaScript引擎中的行为有可能在另一个JavaScript引擎中的行为大相径庭,或者甚至在同一类引擎,不同版本中GC的行为都有可能有较大的差距。详见👉

4. Logical Assignment Operators 扩充逻辑赋值

// "Or Or Equals" (or, the Mallet operator :wink:)
a ||= b;
a || (a = b);

// "And And Equals"
a &&= b;
a && (a = b);

// "QQ Equals"
a ??= b;
a ?? (a = b);

5. Numeric separators 数字分隔符

类似java,数字之间可以使用_来隔开特殊位

# 普通数字
1_000_000_000 
1_0000
0.000_001

# 二进制
0b1010_0001_1000_0101

# 16进制
0xA0_B0_C0

# BigInt
1_000_000_000_000n

# 8进制
0o1234_5670

2020(es11)

1. String.prototype.matchAll

// todo

2. import() 动态引入

import(`@/${modelpath}`).then(module => {}).catch(err => {})

3. BigInt

BigInt提供更大(2^53之外)的整数,只需要在原数字后面加一个n,如12n即被识别为BigInt数据类型。它是除了String、Number、Boolean、Null、Undefined、Symbol外新的基础数据类型。

# 构造方法
const huge = 900000000n
const huge = BigInt(9000000)
const huge = BigInt('9000000')

4. Promise.allSettled

Promise.allSettled()方法返回一个在所有给定的promise都已经fulfilled或rejected后的promise,并带有一个对象数组,每个对象表示对应的promise结果。
旧的写法:

function reflect(promise) {
  return promise.then(
    (v) => {
      return { status: 'fulfilled', value: v };
    },
    (error) => {
      return { status: 'rejected', reason: error };
    }
  );
}

const promises = [ fetch('index.html'), fetch('https://does-not-exist/') ];
const results = await Promise.all(promises.map(reflect));
const successfulPromises = results.filter(p => p.status === 'fulfilled');

替换写法

const promises = [ fetch('index.html'), fetch('https://does-not-exist/') ];
const results = await Promise.allSettled(promises);
const successfulPromises = results.filter(p => p.status === 'fulfilled');

Promise.all如果有一个Promise执行失败,则整体成为reject,如果要得到每个的结果,需要对每个Promise做catch处理;Promise.allSettled会直接返回每个Promise失败与否的执行结果。

5. globalThis

globalThis旨在通过定义标准的全局属性来整合越来越分散的访问全局对象的方式。

# old case
var getGlobal = function () {
  if (typeof self !== 'undefined') { return self; }
  if (typeof window !== 'undefined') { return window; }
  if (typeof global !== 'undefined') { return global; }
  throw new Error('unable to locate global object');
};

var globals = getGlobal();

if (typeof globals.setTimeout !== 'function') {
  // 此环境中没有 setTimeout 方法!
}

# new case
if (typeof globalThis.setTimeout !== 'function') {
  //  此环境中没有 setTimeout 方法!
}

6. for in mechanicsfor...in顺序优化

以前在不同的引擎下for in循环出来的内容顺序是可能不一样的,现在标准化了。

7. Optional Chaining 可选链式操作符

a?.b                        
// a == null ? undefined : a.b

a?.[x]                      
// a == null ? undefined : a[x]

a?.b()                      
// a == null ? undefined : a.b() 

a?.()                       
// a == null ? undefined : a()  

a?.b[3].c?.(x).d
// a == null ? undefined : a.b[3].c == null ? undefined : a.b[3].c(x).d

# 配合??使用
a?.b ?? 200

8. Nullish Coalescing Operator 空值合并操作符

# null, undefined, 0, ''取右
console.log(0 || 'h')
// 'h'

# 仅在null和undefined取右
console.log(0 ?? 'h')
// 0

9. import.meta

开发者引用其它模块时,可以通过import.meta来获取模块的元信息。
import.meta必须在模块(modules)文件中使用,并且import.meta中的对象是可以被添加编辑或删除的。
import.meta常见包含的属性有:
(1) import.meta.url
它返回的是当前模块的文件路径。

# 比如这里有一个模块文件
<script type="module" src="my-module.mjs"></script>
# 或者在脚本中引用
import './my-module.mjs'

# 可以通过`import.meta`获取到本地模块/外部脚本的地址
console.log(import.meta)
// { url: "file:///home/user/my-module.mjs" }

# 也可以解析参数
import './my-module.mjs?someURLInfo=5'
console.log(new URL(import.meta.url).searchParams.get('someURLInfo'))
// 5

# 获取同级文件
await fetch(new URL("../hamsters.jpg", import.meta.url))

(2) import.meta. scriptElement
用于获取引入的script文件的信息。

<script type="module" src="my-module.mjs" data-foo="abc"></script>

# my-module.mjs
console.log(import.meta.scriptElement.dataset.foo)
// "abc"

2019(es10)

1. Optional catch binding catch的参数可以省略

try {
  // ...
} catch {
  // ...
}

2. JSON superset JSON超集

之前JSON一直并不是ECMAScript的子集,简单地说就是 ECMAScript 不允许U+2028(行分隔符)和U+2029(段分隔符)单独出现在字符串字面量中,而 JSON 允许,于是如果是单独出现了这两个字符的 JSON,直接当作 ECMAScript 代码,就会报错。现在可以啦。

3. Symbol.prototype.description

Symbol的description是一个只读属性,用于返回Symbol
对象的可选描述字符串。

console.log(Symbol('desc').description);
// expected output: "desc"

console.log(Symbol.iterator.description);
// expected output: "Symbol.iterator"

console.log(Symbol.for('foo').description);
// expected output: "foo"

console.log(`${Symbol('foo').description}bar`);
// expected output: "foobar"

4. Function.prototype.toString

toString做了一些更新,详情见MDN

5. Object.fromEntries

旧的写法

[['foo', true], ['bar', false]].reduce((acc, [ key, val ]) => Object.assign(acc, { [key]: val }), {})

新的写法

Object.fromEntries([['foo', true], ['bar', false]])

6. Well-formed JSON.stringify

旧的JSON.stringify默认以UTF-8编码输出,对于UTF-16会产生异常。
现在可以避免此问题了。

7. String.prototype.{trimStart, trimEnd}

左右去空格。

8. Array.prototype.{flat, flatMap}

# 扁平化数组
const arr1 = [1, 2, [3, 4]];
arr1.flat();
// [1, 2, 3, 4]

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

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

const arr4 = [1, 2, [3, 4, [5, 6, [7, 8, [9, 10]]]]];
arr4.flat(Infinity);
// [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

# 去除空值
const arr5 = [1, 2, , 4, 5];
arr5.flat();
// [1, 2, 4, 5]
[2, 3, 4].flatMap((x) => [x, x * 2]);
// [2, 4, 3, 6, 4, 8]

2018(es9)

1. Lifting template literal restriction

优化字符串模版。

2. s(dotAll) flag for regular experssions

3. RegExp named capture groups

4. Rest/Spread Properties

let { x, y, ...z } = { x: 1, y: 2, a: 3, b: 4 };
x; // 1
y; // 2
z; // { a: 3, b: 4 }

let n = { x, y, ...z };
n; // { x: 1, y: 2, a: 3, b: 4 }

5. RegExp Lookbehind Assertions

6. RegExp Unicode Property Escapes

7. Promise.prototype.finally

8. Asynchronous Iteration

2017(es8)

1. Object.values / Object.entries

2. String padding

3. Object.getOwnPropertyDescriptors

4. Trailing commas in function parameter lists and calls

5. Async functions

6. Shared memory and atomics

2016(es7)

1. Arrays.prototype.includes

2. Exponentiation operator

2015(es6)

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,294评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,493评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,790评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,595评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,718评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,906评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,053评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,797评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,250评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,570评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,711评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,388评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,018评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,796评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,023评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,461评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,595评论 2 350

推荐阅读更多精彩内容