书栈网 · BookStack 本次搜索耗时 0.019 秒,为您找到 2325 个相关结果.
  • (不)扩充内置原型

    (不)扩充内置原型 (不)扩充内置原型 我们可以扩充构造函数的prototype 属性来为构造函数增加功能,这个特性非常强大,但有时会强大到超过我们的掌控。 给内置构造函数如Object() 、Array() 、Function() 扩充原型看起来非常诱人,但这种做法会严重降低代码的可维护性,因为它会让你的代码变得难以预测。对于那些基于你的代码来做...
  • Import and export modules

    273 2021-09-29 《Deno v1.14.2 Manual》
    Import and export modules Concepts Overview Local Import Remote Import Export Import and export modules Concepts import allows you to include and use modules held elsewh...
  • Import and export modules

    246 2021-11-07 《Deno v1.15.2 Manual》
    Import and export modules Concepts Overview Local Import Remote Import Export Import and export modules Concepts import allows you to include and use modules held elsewh...
  • JavaScript for browsers

    JavaScript client library for web browsers Tokens in production applications Before you begin Use with module bundlers Use bundled distributions with browsers and module loader...
  • Support for Mix-in classes

    Support for Mix-in classes First some terminology: Putting all of the above rules together in an example: Support for Mix-in classes TypeScript 2.2 adds support for the ECMAS...
  • schemas in the browser

    Mongoose in the browser As of v3.9.3, Mongoose schema declarations are isomorphic, that is, you can use mongoose’s browser component to validate objects against you...
  • Symbols

    Symbols 介绍 众所周知的Symbols Symbol.hasInstance Symbol.isConcatSpreadable Symbol.iterator Symbol.match Symbol.replace Symbol.search Symbol.species Symbol.split Symbol.t...
  • Buffers和类型数组

    Buffers和类型数组 Buffers和类型数组 Buffers 同样是 Uint8Array 类型数组(TypedArray)的实例。但是,和 ECMAScript 2015 中的 TypedArray 规范还是有些微妙的不同之处。例如,当 ArrayBuffer#slice() 创建了一个切片的副本时,Buffer#slice() 的实...
  • Symbols

    介绍 众所周知的Symbols Symbol.hasInstance Symbol.isConcatSpreadable Symbol.iterator Symbol.match Symbol.replace Symbol.search Symbol.species Symbol.split Symbol.toPrimiti...
  • TypeScript里的this

    TypeScript里的this 介绍 典型症状和危险系数 JavaScript里的this 究竟是什么? this 的危险信号 修复 使用实例函数 本地的胖箭头 Function.bind TypeScript里的this 介绍 在JavaScript里(还有TypeScript),this 关键字的行为与其它语言相比大为不同。这可...