书栈网 · BookStack 本次搜索耗时 0.040 秒,为您找到 3184 个相关结果.
  • 安装

    安装 通过script标签引入 NPM 安装 通过script标签引入 请通过npm 、bower 或者直接到github上下载源码包。其中dist/intact.js 为UMD方式打包的文件,直接通过script引入会暴露全局变量Intact 。 <script src = "/path/to/intact.js" ></scrip...
  • 介绍

    本教程全面介绍 JavaScript 核心语法,覆盖了 ES5 和 DOM 规范的所有内容。 内容上从最简单的讲起,循序渐进、由浅入深,力求清晰易懂。所有章节都带有大量的代码实例,便于理解和模仿,可以用到实际项目中,即学即用。 本教程适合初学者当作 JavaScript 语言入门教程,学完后就可以承担实际的网页开发工作,也适合当作日常使用的参考手册。 ...
  • “(原型)继承”

    “(原型)继承” 考察“类”关系 “(原型)继承” 我们已经看到了一些近似的“类”机制黑进 JavaScript 程序。但是如果我们没有一种近似的“继承”,JavaScript 的“类”将会更空洞。 实际上,我们已经看到了一个常被称为“原型继承”的机制如何工作:a 可以“继承自” Foo.prototype ,并因此可以访问 myName() ...
  • 12. Callable entities in ECMAScript 6

    978 2019-05-03 《Exploring ES6》
    12. Callable entities in ECMAScript 6 12.1 Overview 12.2 Ways of calling in ES6 12.2.1 Calls that can be made anywhere 12.2.2 Calls via super are restricted to specific locations...
  • 对象字面量扩展

    对象字面量扩展 简约属性 简约方法 简约匿名 ES5 Getter/Setter 计算型属性名 设置[[Prototype]] 对象super 对象字面量扩展 ES6给不起眼儿的{ .. } 对象字面量增加了几个重要的便利扩展。 简约属性 你一定很熟悉用这种形式的对象字面量声明: var x = 2 , y = ...
  • JS Basic

    Basic Summary Type judgement Scope Reference Memory release ES6 features Basic [Common] Type judgment [Common] Scope [Common] Reference [Common] Memory release [...
  • Chapter 2: Syntax

    Chapter 2: Syntax Chapter 2: Syntax If you’ve been writing JS for any length of time, odds are the syntax is pretty familiar to you. There are certainly many quirks, but overal...
  • Getters and Setters

    Getters/Setters in Mongoose Getters Setters Differences vs ES6 Getters/Setters Getters/Setters in Mongoose Mongoose getters and setters allow you to execute custom logic whe...
  • TypeScript 1.4

    Union types Overview Stricter Generics Better Type Inference let declarations const declarations Template strings Type Guards Type Aliases const enum (completely inline...
  • TypeScript 1.7

    787 2018-11-01 《TypeScript 指南》
    TypeScript 1.7 支持 async /await 编译到 ES6 (Node v4+) TypeScript 目前在已经原生支持 ES6 generator 的引擎 (比如 Node v4 及以上版本) 上支持异步函数. 异步函数前置 async 关键字; await 会暂停执行, 直到一个异步函数执行后返回的 promise 被 ...