250x250
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
- 자바스크립트
- javascript
- on_delete
- status code
- typescript
- JWT
- bcrypt
- OSI7계층
- westagram
- async/await
- 호이스팅
- crud2
- 노드
- 프로미스
- pm2
- Django
- 실행 컨텍스트
- docker
- django westagram
- TypeError: this.boardRepository.createBoard is not a function
- nodeJS
- 장고초기세팅
- Jest
- rebase
- node
- 스코프
- wecode
- CORS
- manytomanyfield
- 트랜잭션
Archives
- Today
- Total
될때까지
클래스 본문
728x90
class Human {
constructor (type="human") {
this.type = type;
}
static isHuman(human) {
return human instanceof Human;
}
breathe() {
alert('h-a-a-a-m');
}
}
class Zero extends Human {
constructor(type, firstName, lastName) {
super(type);
this.firstName = firstName;
this.lastName = lastName;
}
sayName() {
super.breathe();
alert(`${this.firstName} ${this.lastName}`);
}
}
const newZero = new Zero();
728x90
'학습 > Node.js' 카테고리의 다른 글
REPL 사용하기, JS파일 실행하기 (0) | 2022.08.21 |
---|---|
Promise, async/await (0) | 2022.08.21 |
구조분해할당 (0) | 2022.08.21 |
화살표 함수 (0) | 2022.08.21 |
템플릿 문자열, 객체 리터럴 (0) | 2022.08.21 |