class1 [JavaScript] 자바스크립트에서의 클래스(Class) 1. Class?객체를 생성하기 위한 일종의 템플릿// 클래스 생성class Person { constructor(name, age, hobby) { this.name = name; this.age = age; this.hobby = hobby; } speak() { console.log("hello"); } speak1() { console.log(`my name is ${this.name} and my hobby is ${this.hobby}`); }}위의 코드는 class Animal 이라는 class가 선언 2. Class를 통한 Instance 생성// class를 통한 instance 생성const .. 2024. 7. 31. 이전 1 다음