๐ย ****Reference
๐ย Chapter
Constructor function (์์ฑ์ ํจ์)
constructor() { ... }
constructor(argument0) { ... }
constructor(argument0, argument1) { ... }
constructor(argument0, argument1, ... , argumentN) { ... }
constructor
๋ฅผ ์ฌ์ฉํ๋ฉด ๋ค๋ฅธ ๋ชจ๋ ๋ฉ์๋ ํธ์ถ๋ณด๋ค ์์ ์์ ์ธ, ์ธ์คํด์ค ๊ฐ์ฒด๋ฅผ ์ด๊ธฐํํ ๋ ์ํํ ์ด๊ธฐํ ์ฝ๋๋ฅผ ์ ์ํ ์ ์๋ค.class Person {
constructor(name) {
this.name = name;
}
introduce() {
console.log(`Hello, my name is ${this.name}`);
}
}
const otto = new Person("Otto");
otto.introduce();
constructor() {}
constructor(...args) {
super(...args);
}