书栈网 · BookStack 本次搜索耗时 0.050 秒,为您找到 2325 个相关结果.
  • 26. Unicode in ES6

    810 2019-05-03 《Exploring ES6》
    26. Unicode in ES6 26.1 Unicode is better supported in ES6 26.2 Escape sequences in ES6 26.2.1 Where can escape sequences be used? 26.2.2 Escape sequences in the ES6 spec 26.2.2....
  • 6. 用語集

    6. 用語集 6. 用語集 Promises Promise规范自身 promise对象 promise对象指的是 Promise 实例对象 ES6 Promises 如果想明确表示使用 ECMAScript 6th Edition 的话,可以使用ES6作为前缀(prefix) Promises/A+ Promises/A+ 。 这是...
  • ES2017 - async-to-generator

    @babel/plugin-transform-async-to-generator Example Installation Usage With a configuration file (Recommended) Via CLI Via Node API References @babel/plugin-transform-asy...
  • ES2017 - async-to-generator

    @babel/plugin-transform-async-to-generator Example Installation Usage Via .babelrc (Recommended) Via CLI Via Node API References @babel/plugin-transform-async-to-generat...
  • Object Extensibility Traps

    Object Extensibility Traps Two Basic Examples Duplicate Extensibility Methods Object Extensibility Traps ECMAScript 5 added object extensibility modification through the Obje...
  • JavaScript面向对象

    1994 2018-07-17 《前端工程师手册》
    JavaScript面向对象 什么是面向对象 原型继承与类继承的区别 参考资料 JavaScript面向对象 JavaScript是不是一门严格意义上的面向对象的语言,它并没有提供类的方法。它是使用原型继承而不是类继承达到面向对象的效果。 我们先理解一下面向对象的基本概念,后续章节详细的解释下面向对象在JavaScript中的实现。 什么...
  • 迭代器和生成器

    迭代器和生成器 可迭代性 for..of 语句 for..of vs. for..in 语句 代码生成 目标为 ES5 和 ES3 目标为 ECMAScript 2015 或更高 迭代器和生成器 可迭代性 当一个对象实现了Symbol.iterator 属性时,我们认为它是可迭代的。 一些内置的类型如 Array ,Map ,Set...
  • 15. Classes

    1273 2019-05-03 《Exploring ES6》
    15. Classes 15.1 Overview 15.2 The essentials 15.2.1 Base classes 15.2.1.1 No separators between members of class definitions 15.2.1.2 Class declarations are not hoisted 15.2.1....
  • Iterators 和 Generators

    Iterators 和 Generators for..of 语句 for..of vs. for..in 语句 代码生成 目标为 ES5 和 ES3 目标为 ECMAScript 2015 或更高 Iterators 和 Generators 当一个对象实现了Symbol.iterator 属性时,我们认为它是可迭代的。 一些内置...
  • Iterators 和 Generators

    可迭代性 for..of 语句 for..of vs. for..in 语句 代码生成 目标为 ES5 和 ES3 目标为 ECMAScript 2015 或更高 可迭代性 当一个对象实现了Symbol.iterator 属性时,我们认为它是可迭代的。一些内置的类型如Array ,Map ,Set ,String ,Int32Arr...