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

2024-01-16 05:48

本文主要是介绍JavaScript语法 ES6、ES7、ES8、ES9、ES10、ES11、ES12新特性汇总,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

51174f7f98b02e98cd2dc875c5d0eef3.png

来源 | https://www.fly63.com/

本文汇总了 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: undefinedu5: ,
}
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

本文完~

学习更多技能

请点击下方公众号

a7dc821be155261398f43fa7c1bec468.gif

48c13428212af7a7a8bdd3e973f3f5e5.png

3e7b9e9da8e4e47e7dfcc38a6654518b.png

这篇关于JavaScript语法 ES6、ES7、ES8、ES9、ES10、ES11、ES12新特性汇总的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/611500

相关文章

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

【 html+css 绚丽Loading 】000046 三才归元阵

前言:哈喽,大家好,今天给大家分享html+css 绚丽Loading!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕 目录 📚一、效果📚二、信息💡1.简介:💡2.外观描述:💡3.使用方式:💡4.战斗方式:💡5.提升:💡6.传说: 📚三、源代码,上代码,可以直接复制使用🎥效果🗂️目录✍️