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 | 31 |
Tags
- regExp
- shit-christmas
- css
- Prototype
- ajax
- Engoo
- css grid
- JS
- flex-basis
- node
- Node.js
- flexbox
- es6
- css 오버레이
- express-handlebars
- 디자인패턴
- flex-shrink
- 정규표현식
- Object.create
- img 확대
- 무료 백엔드 배포
- Sass
- just-one-small-sip
- Express
- module wrapper function
- flex-grow
- css variables
- close together
- improve-iq-by-up-to-10%!
- select by attribute
Archives
- Today
- Total
목록상속 (1)
[중요] Prototypal inheritance
JS에서 Constructor는 함수이다. 따라서 다음과 같은 코드실행이 가능하다. // Person Constructor function Person(firstName, lastName) { this.firstName = firstName; this.lastName = lastName; } // Customer constructor function Customer(firstName, lastName, phone, membership) { Person.call(this, firstName, lastName); this.phone = phone; this.membership = membership; } // Create customer const customer1 = new Customer("Tom", "..
2021 프론트 엔드 로드맵 따라가기/JS
2021. 6. 5. 17:07