Exploring ES6(Leanpub ‘15)笔记(仅目录提纲)

Exploring ES6

  1. First Steps(要点,详细从略)
    1. babel-node
    2. var --> let/const
    3. IIFEs --> blocks
    4. =>
    5. 多返回值(destructuring)
    6. 字符串拼接 --> template literals(vs JSX Tagged template)
    7. for --> forEach --> for-of
    8. 参数默认值
    9. 命名参数
    10. rest参数
    11. apply --> ...
    12. 工具:transpiler, webpack, Babel
    13. generator
    14. modules
    15. *WeakMap
    16. TypedArray:ArrayBuffer, DataView
    17. *CPS:Async.js
    18. Promises
    19. Unicode(超过16位的codepoint):'\u{1F680}'
    20. TCO
    21. 元编程with proxies
      1. Revocable references --> Membranes : Caja Compiler?
      2. MOP:Reflect(这是在向CLISP、Ruby、Python这些语言学习?)

你可能感兴趣的:(JavaScript,ES6)