An open API service indexing awesome lists of open source software.

https://github.com/yamoo9/es6

EcmaScript2015(ES6)
https://github.com/yamoo9/es6

babel ecmascript2015 es6 rollup webpack

Last synced: about 1 year ago
JSON representation

EcmaScript2015(ES6)

Awesome Lists containing this project

README

          

## ECMAScript 2015 (ES6)

모던 자바스크립트 EcmaScript 2015(ES6)를 오늘날 브라우저에서 바로 사용하기 위한 방법을 학습합니다.

- [ES2015(ES6)](https://www.ecma-international.org/ecma-262/6.0)
- [Babel](https://babeljs.io)
- [Rollup](https://rollupjs.org)
- [Webpack](https://webpack.js.org/)

### 키노트

[ECMAScript 2015 학습용 슬라이드](https://slides.com/yamoo9/es6)

### 학습자료

1. [let, const](./ES6/step-by-step/01__let-const.js)
1. [template literals](./ES6/step-by-step/02__template-strings.js)
1. [string additions](./ES6/step-by-step/03__string-additions.js)
1. [arrow function](./ES6/step-by-step/04__arrow-function.js)
1. [default/rest parameters & spread operator](./ES6/step-by-step/05__parameters-spread.js)
1. [shorthand properties](./ES6/step-by-step/06__parameters-spread.js)
1. [object ehancements](./ES6/step-by-step/07__object-ehancements.js)
1. [destructuring assignment](./ES6/step-by-step/08__destructuring-assignment.js)
1. [classes](./ES6/step-by-step/09__classes.js)
1. [modules](./ES6/step-by-step/10__modules.js)
1. [for-of, iterator & generator](./ES6/step-by-step/11__for-of_iterator_generator.js)
1. [array additions](./ES6/step-by-step/12__array-additions.js)
1. [set, map](./ES6/step-by-step/13__set-map.js)
1. [weakset, weakmap](./ES6/step-by-step/14__weakset-weakmap.js)
1. [promise](./ES6/step-by-step/15__promise.js)