Skip to content

Latest commit

 

History

History
140 lines (95 loc) · 7.09 KB

js_vanilla.md

File metadata and controls

140 lines (95 loc) · 7.09 KB

Compatibility

ES Proposals / Next

Related Libs

Feature, JS version detection

Modules

Async/Await

Related

Decorators

Polyfills/Shims/Transpilers

Notes

  • How to use browser implementations of new syntax instead of Babel transformation?

    • Babel should not transform syntax when browser has implemented the syntax.
    • this depends on the target browsers and their versions :(
    • core-js can be used to non syntax polifilling
  • How to use browser implementations of new syntax instead of TypeScript transformation?

    • tsc can be configured to target ES6 and use ES2015+ libs or not
    • core-js can be used to non syntax polifilling

Related Libs

Tricks

General

Regular Expressions

Arrow Function/Fat Arrow/=>

Strings

Arrays

Maps

Typed Arrays

Template Strings

Proxies

Promises

Related Libs

Iterators

Generators

Related Libs