What got you here won't get you there

JavaScript - 1 (Version Specifications) 본문

Web App

JavaScript - 1 (Version Specifications)

optimy 2021. 6. 17. 00:45

ECMAScript 6 (ES6, ES2015)


  • Class, Object Literal
  • Arrow
  • Iterator, Generator, For of
  • const, let
  • destructuring, rest, spread
  • Template string
  • Symbol, Promise, Map, Set, WeakMap, WeakSet, Proxy, Reflect

ECMAScript 7 ~ 10, Stage3

7 - 중첩된 rest해체 const

8 - async/await, shared memory, atomics

9 - object 해체, asynchronous iterators

10 - optional catch

11 - BigInt, globalThis, top level await, class field, private field/method, nullish coalescing(??), optional chaning(?.), WeakReference

 

'Web App' 카테고리의 다른 글

웹 기초  (0) 2021.09.07
성능 최적화  (0) 2021.09.06
[JS] Object property order  (0) 2021.07.13
Non-blocking JavaScript - 1  (0) 2021.06.17
웹 앱, 자바스크립트  (0) 2021.06.16
Comments