[js] Class 내의 함수 호출

lilyoh·2020년 7월 22일
0
post-custom-banner
  • 오늘의 삽질: class 내의 함수를 호출할 때는 반드시 () 괄호를 붙여야 한다!
  • 클래스 내의 함수는 매개변수를 안 써줘도 된다. constructor 에 이미 지정해줬기 때문.
class myMath {
  constructor(num1, num2) {
    this.num1 = num1;
    this.num2 = num2;
  }
  
  getNumber() {
    return [this.num1, this.num2];
  }
  
  add() {
    return this.num1 + this.num2;
  }
  
  substract() {
    return this.num1 - this.num2;
  }
  
  multiply() {
    return this.num1 * this.num2;
  }
}

// 호출하기
const test = new myMath(1, 2);
console.log(test.add());
// 3
post-custom-banner

0개의 댓글