클래스
ES6: Class
/* 클래스 정의 ------------------------------------------------ */
class Book {
/* 생성자 */
constructor(title, author, pages) {
this.title = title;
this.author = author;
this.pages = pages;
this.init();
}
/* 클래스 메서드 */
static create(){}
/* 인스턴스 메서드 */
init(){}
}
/* 인스턴스 생성 ------------------------------------------------ */
let indRevo = new Book('한 권으로 정리하는 4차 산업혁명', '최진기', 367);
console.log(indRevo); // Book {}TypeScript: Class
참고
Last updated