Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 1일1문장
- React
- 객체
- Machine Learning
- multer
- 개발공부
- javascript
- CSS
- 자료구조
- coursera
- Linux
- 회고
- 끈기
- 러닝자바스크립트
- scope
- Andrew Ng
- HTTP
- 스파르타코딩클럽
- Til
- NextJS
- docker
- ES6
- 자바스크립트
- 클로저
- 데이터전송
- reactnative
- nodejs
- 우선순위
- Sequence
- 리눅스
Archives
- Today
- Total
목록ES6 (1)
해나아부지 개발일지
ES6 Class 와 Super
JavaScript는 Prototype 기반의 언어이기 때문에 class라는 개념이 없었다. 사용자의 편의성을 위해 ES6(ECMA Script 2015)가 적용되고 작동원리는 똑같지만 class라는 키워드를 사용하여 조금 더 객체지향적으로 보이는 코딩을 할 수 있게 됐달까? class //ES5 function Car(model, company, year) { this.model = model this.company = company this.year = year } Car.prototype.start = function () { console.log(this.model + "가 출발합니다") } Car.prototype.stop = function () { console.log(this.model +..
Developers/OOP
2020. 8. 1. 23:48