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)
- Host: GitHub
- URL: https://github.com/yamoo9/es6
- Owner: yamoo9
- Created: 2017-12-11T09:19:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-12T11:46:06.000Z (over 8 years ago)
- Last Synced: 2025-03-30T08:41:35.145Z (about 1 year ago)
- Topics: babel, ecmascript2015, es6, rollup, webpack
- Language: JavaScript
- Size: 53.7 KB
- Stars: 12
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)