const calculator = {
plus : function(a,b){
return a + b;
}
multiple : function(a,b){
return a**b;
}
minus : function(a,b){
return a-b;
}
divide : function(a,b){
return a/b;
}
}
const plus = calculator.plus(5, 5)
console.log(plus)
여기서 { 이게 빠졌다는것같은데 어디서 문제인지 잘모르겠네요 ㅠㅠㅠ 좀 도와주시면 감사하겠습니다