JS ES6 이전 이후 class 비교
10674 단어 JavaScriptJavaScript
JS ES6 이전 이후 class 비교
es6 이전 class
function Animal(type, name, sound) {
this.type = type;
this.name = name;
this.sound = sound;
}
Animal.prototype.info = function () {
console.log(
this.name + "라는" + this.type + "가 " + this.sound + "이라고 하네요"
);
};
const dog = new Animal("개", "멍멍이", "멍멍");
dog.info();
// 결과
멍멍이라는개가 멍멍이라고 하네요
es6 이후 class
class Animal {
constructor(type, name, sound) {
this.type = type;
this.name = name;
this.sound = sound;
}
info = () => {
console.log(`${this.name}라는 ${this.type}가 ${this.sound}이라고 하네요`);
};
}
const dog = new Animal("개", "멍멍이", "멍멍");
dog.info();
// 결과
멍멍이라는 개가 멍멍이라고 하네요
es6 이후 class의 상속
class Animal {
constructor(type, name, sound) {
this.type = type;
this.name = name;
this.sound = sound;
}
info = () => {
console.log(`${this.name}라는 ${this.type}가 ${this.sound}이라고 하네요`);
};
}
class Dog extends Animal {
constructor(name, sound) {
super("개", name, sound);
}
}
const dog = new Dog("멍멍이", "멍멍");
dog.info();
// 결과
멍멍이라는 개가 멍멍이라고 하네요
Author And Source
이 문제에 관하여(JS ES6 이전 이후 class 비교), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@ahngh/JS-ES6-이전-이후-class-비교
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
function Animal(type, name, sound) {
this.type = type;
this.name = name;
this.sound = sound;
}
Animal.prototype.info = function () {
console.log(
this.name + "라는" + this.type + "가 " + this.sound + "이라고 하네요"
);
};
const dog = new Animal("개", "멍멍이", "멍멍");
dog.info();
// 결과
멍멍이라는개가 멍멍이라고 하네요
class Animal {
constructor(type, name, sound) {
this.type = type;
this.name = name;
this.sound = sound;
}
info = () => {
console.log(`${this.name}라는 ${this.type}가 ${this.sound}이라고 하네요`);
};
}
const dog = new Animal("개", "멍멍이", "멍멍");
dog.info();
// 결과
멍멍이라는 개가 멍멍이라고 하네요
class Animal {
constructor(type, name, sound) {
this.type = type;
this.name = name;
this.sound = sound;
}
info = () => {
console.log(`${this.name}라는 ${this.type}가 ${this.sound}이라고 하네요`);
};
}
class Dog extends Animal {
constructor(name, sound) {
super("개", name, sound);
}
}
const dog = new Dog("멍멍이", "멍멍");
dog.info();
// 결과
멍멍이라는 개가 멍멍이라고 하네요
Author And Source
이 문제에 관하여(JS ES6 이전 이후 class 비교), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ahngh/JS-ES6-이전-이후-class-비교저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)