js 클래스1 [javascript]클래스 01. 클래스 클래스는 함수의 집합체입니다. class study { constructor(num, name, job) { this.num = num; this.name = name; this.job = job; } result() { document.write(this.num + ". 내 이름은 " + this.name + "이며, 직업은 " + this.job + "입니다.") } } const info1 = new study("1", "웹쓰", "웹퍼블리셔"); const info2 = new study("2", "웹스토리보이", "프론트앤드 개발자"); info1.result(); info2.result(); 결과보기 02. 클래스 상속 클래스 상속을 사용하면 클래스를 다른 클래스로 확장할 수 있.. 2022. 9. 20. 이전 1 다음 728x90