const array = [{j: 'k'}, {l: 'm'}]; // 중첩된 객체
const shallowCopy = [...array]; // 얕은 복사
const deepCopy = JSON.parse(JSON.stringify(array)); // 깊은 복사
class human {
constructor(name, age, height, weight) {
this.name = name;
this.age = age;
this.height = height;
this.weight = weight;
}
study (target) {
실행문;
}
}
const me = new human("최준영", 24, 178, 75);
class Unit {
constructor(name, hp, att) {
this.name = name;
this.hp = hp;
this.att = att;
}
attack(target) {
target.hp -= this.att;
}
}
class Hero extends Unit { // extends로 부모 클래스 상속
constructor (name) {
super(name, 100, 10); // 부모클래스의 생성자 호출
this.lev = 1; // 그외 속성
}
attack(target) {
super.attack(target); // 그외 속성이 없다면 생략 가능
}
}