240 发简信
IP属地:广西
  • module

    module import 和 export,同步加载,在编译阶段确定依赖关系 //a.js export const a =1 const b...

  • decorator

    装饰器 装饰类对象@testclass A{}function test(target){//类对象装饰器函数target指向类对象 ta...

  • class

    class class 与es5function差异class只能使用new命令执行,es5function可以直接执行class类内部定义方法...

  • async

    async async函数是对generator函数的改进内置执行器,generator函数的执行需要执行器更好的语义更广的适用性,await命...

  • Generator

    Generator generator函数执行后不执行函数体,返回遍历器对象,调用遍历器对象next()执行函数体,直到碰到yield表达式返回...

  • Iterator

    Iterator和for...of 可遍历对象条件必备条件:遍历器接口,指针对象,next方法返回值规格 Iterator接口调用场合解构赋值扩...

  • Promise

    Promise promise具有三种状态,pending,fulfilled,rejected,创建就是pending态,通过resolve和...

  • Proxy和Reflect

    Proxy和Reflect 拦截操作get(target,propKey,receiver) 读取属性时拦截拦截器对不可配置(configura...

  • Set和Map

    Set和Map Set实例属性Set.prototype.constructor 构造函数,默认SetSet.prototype.size 成员...