될때까지

클래스 본문

학습/Node.js

클래스

랖니 2022. 8. 21. 14:18
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