1. ์์ฑ์ ํจ์ Person์ classํ์ผ๋ก ๋ณํํด๋ณด์ธ์.
let Person = (function () {
function Person(name) {
this.name = name;
}
Person.prototype.sayHi = function () {
console.log("My name is " + this.name);
};
Person.sayHello = function () {
console.log("Hello");
};
return Person;
})();
class Person {
constructor(name){
this.name = name; }
sayHi(){
console.log(`My name is ${this.name}`)
}
static sayHello(){
console.log("Hello")}
}
2. ์๋์ ์ฝ๋์์ ๋ฌธ์ ๊ฐ ๋๋ ๋ถ๋ถ ์ฐพ๊ณ ์ค๋ช
ํ ๋ค, ๊ณ ์ณ๋ณด์ธ์.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<button class="btn">0</button>
</body>
<script>
class App {
constructor() {
this.$button = document.querySelector(".btn");
this.count = 0;
this.$button.onclick = this.increase;
}
increase() {
this.$button.textContent = ++this.count;
}
}
new App();
</script>
</html>
3. Rectangle ํด๋์ค๋ฅผ ์์๋ฐ์ color๋ฅผ ํ๋กํผํฐ๋ก ๊ฐ๋ ColorRectangle ํด๋์ค๋ฅผ ์์ฑํ์ธ์.
: ํ๋กํ ํ์
๋ฉ์๋๋ ๊ธฐ์กด์ return๋ฌธ์ ์ค๋ฒ๋ผ์ด๋ฉํ์ฌ, color๊ฐ ์ถ๊ฐ๋ ๋ฌธ์ฅ์ ๋ฐํํด์ผํฉ๋๋ค.์ฝ๋๋ฅผ ์์ฑํ ๋ค ์์ฑํ ์ฝ๋๋ฅผ ์ค๋ช
ํด๋ณด์ธ์.
class Rectangle {
constructor(width, height) {
this.width = width;
this.height = height;
}
toString() {
return `width = ${this.width}, height = ${this.height}`;
}
}
class ColorRectangle extends Rectangle {
constructor(width,height, color){
super(width,height);
this.color= color;
}
toString() {
return super.toString()+`,color = ${this.color}`;
}
}