天天看点

JavaScript语法 ES6、ES7、ES8、ES9、ES10、ES11、ES12新特性汇总

JavaScript语法 ES6、ES7、ES8、ES9、ES10、ES11、ES12新特性汇总

本文汇总了 ES6 至 ES11 使用十分常用的特性,包括正在规划的 ES12,仅涵盖了全部的 ES 特性。详细介绍将使用到 ES6 至 ES11 最新版的可用特性。

新特性ES6(2015)

1、类(类)
class Man {
  constructor(name) {
    this.name =  有课前端网;
  }
  console() {
    console.log(this.name);
  }
}
const man = new Man( 有课前端网);
man.console(); //  有课前端网      
2、智能(ES模块)
// 模块 A 导出一个方法
export const sub = (a, b) = a + b;
// 模块 B 导入使用
import { sub } from ./A;
console.log(sub(1, 2)); // 3      
3、箭头(箭头)函数
const func = (a, b) = a + b;
func(1, 2); // 3      
4、函数参数默认值
function foo(age = 25,){ // ...}      
5、 模板字符串
const name =  有课前端网;
const str = `Your name is ${name}`;      
6、解构架构
let a = 1, b= 2;
[a, b] = [b, a]; // a 2  b 1      
7、延展符
let a = [...hello world]; // [h, e, l, l, o,  , w, o, r, l, d]      
8、对象属性简写
const name= fly63前端,
const obj = { name };      
9、承诺
Promise.resolve().then(() = { console.log(2); });
console.log(1);
// 先打印 1 ,再打印 2      
10、让和常量
let name =  有课前端网;
const arr = [];      

ES7(2016)

1、 Array.prototype.includes()
[1].includes(1); // true      
2、指数操作符
2**10; // 1024      

ES8(2017)

1、异步/等待

终极终极解决方案

async getData(){
    const res = await api.getTableData(); // await 异步任务
    // do something    
}      
2、Object.values()
Object.values({a: 1, b: 2, c: 3}); // [1, 2, 3]      
3、 Object.entries()
Object.entries({a: 1, b: 2, c: 3}); // [[a, 1], [b, 2], [c, 3]]      
4、字符串填充
// padStart
hello.padStart(10); //      hello
// padEnd
hello.padEnd(10) hello      
5、函数参数列表允许结尾

规定也一样,职能规定与规则和结尾的逗号,保持一致。

6、Object.getOwnPropertyDescriptors()

如果对象的所有自身属性获取一个空,则如果没有返回对象。

7、SharedArrayBuffer对象

SharedArray 对象使用表示一个通用的长度的密封缓冲区,密封,

/**
 * 
 * @param {*} length 所创建的数组缓冲区的大小,以字节(byte)为单位。
 * @returns {SharedArrayBuffer} 一个大小指定的新 SharedArrayBuffer 对象。其内容被初始化为 0。
 */
new SharedArrayBuffer(10)      
8、原子对象

Atomics 对象提供了一组静态方法,用于对 SharedArrayBuffer 对象进行原子操作。

ES9(2018) 

1、徒劳

await可以和for...的循环使用,以某种方式运行异步操作

async function process(array) {
  for await (let i of array) {
    // doSomething(i);
  }
}      
2、 Promise.finally()
Promise.resolve().then().catch(e = e).finally();      
3、Rest/Spread 属性
const values = [1, 2, 3, 5, 6];
console.log( Math.max(...values) ); // 6      
4、正则导演组
const reg = /(year[0-9]{4})-(month[0-9]{2})-(day[0-9]{2})/;
const match = reg.exec(2021-02-23);      
5、正则表达式相反声明
(=p)、(=p)  p 前面(位置)、p 后面(位置)
(!p)、(!p) 除了 p 前面(位置)、除了 p 后面(位置)      
6、正则表达式dotAll模式

正则表达式中点。除匹配回车外的任何单字符,标记改变这种行为,允许行终止符的出现。

/hello.world/.test(hello\nworld); // false      

ES10(2019)

1、Array.flat()和Array.flatMap()

平坦的()

[1, 2, [3, 4]].flat(Infinity); // [1, 2, 3, 4]      

平面图()

[1, 2, 3, 4].flatMap(a = [a**2]); // [1, 4, 9, 16]      
2、String.trimStart()和String.trimEnd()

去除字符串首尾字符

3、String.prototype.matchAll

matchAll()为所有匹配的匹配对象返回一个重复器

const raw_arr = test1  test2  test3.matchAll((/t(e)(st(\d))/g));
const arr = [...raw_arr];      
4、Symbol.prototype.description

只读属性,返回 Symbol 对象的任选描述的字符串。

Symbol(description).description; // description      
5、 Object.fromEntries()

返回一个给定对象本人可枚举属性值的关键值。

// 通过 Object.fromEntries, 可以将 Map 转化为 Object:
const map = new Map([ [foo, bar], [baz, 42] ]);
console.log(Object.fromEntries(map)); // { foo: bar, baz: 42 }      
6、任选捕获

在 ES10 之前,我们是这样异常的监护人:

try {// tryCode
} catch (err) {// catchCode
}      

这里的err是必须的参数,在ES10可以省略这个参数。

ES11(2020)

1、空值合并操作符(空值处理)

表达式在的左边求价值,未定义或返回其性质。

let user = {
    u1: 0,
    u2: false,
    u3: null,
    u4: undefined
    u5: ,
}
let u2 = user.u2  用户2  // false
let u3 = user.u3  用户3  // 用户3
let u4 = user.u4  用户4  // 用户4
let u5 = user.u5  用户5  //      
2、可选链(任选链)

用户检测宝宝的孩子

let user = {}
let u1 = user.childer.name // TypeError: Cannot read property name of undefined
let u1 = user.childer.name // undefined      
3、Promise.allSettled

返回在所有给定的承诺中,已被拒绝或被拒绝后的亲,并以一个对象的承诺,每个对象表示。

const promise1 = Promise.resolve(3);
const promise2 = 42;
const promise3 = new Promise((resolve, reject) = reject(我是失败的Promise_1));
const promise4 = new Promise((resolve, reject) = reject(我是失败的Promise_2));
const promiseList = [promise1,promise2,promise3, promise4]
Promise.allSettled(promiseList)
.then(values={
  console.log(values)
});      
4、进口()

导入导入

5、新基本数据类型 BigInt

任意匹配的概率

6、globalThis
  • 浏览器:window
  • 工人:自己
  • 节点:全局

ES12(2021)

1、全部替换

返回一个全新的字符串,所有符合匹配规则的字符都将被替换掉

const str = hello world;
str.replaceAll(l, ); // heo word      
2、Promise.any

Promise.any() 接收到一个Promise 就可以没有拒绝,只要其中的一个promise 成功,就返回那个promise 。如果已经可以让对象中返回一个promise 成功(所有的promise 都失败/),失败的承诺。

const promise1 = new Promise((resolve, reject) = reject(我是失败的Promise_1));
const promise2 = new Promise((resolve, reject) = reject(我是失败的Promise_2));
const promiseList = [promise1, promise2];
Promise.any(promiseList)
.then(values={
  console.log(values);
})
.catch(e={
  console.log(e);
});      
3、弱引用​

使用WeakRefs的Class类创建对对象的弱引用(对对象的弱引用是指当该对象应该被GC回收时不会阻止GC的回收行为)

4、逻辑和形式表现​

之间的关系和表现,以及性能结合了之间的关系(和表现)​

a ||= b
//等价于
a = a || (a = b)


a = b
//等价于
a = a  (a = b)


a = b
//等价于
a = a  (a = b)      
5、数字字符​
const money = 1_000_000_000;
//等价于
const money = 1000000000;


1_000_000_000 === 1000000000; // true