Node.js 입문 주차 1주차_2
Node.js 입문 주차 1주차_2 객체 리터럴이란? 객체를 생성하기 위한 표기 방법 📌 사칙연산하는 객체 const calculater = { add : function (a, b) {return a+b}, sub : function (a, b) {return a-b}, mul : function (a, b) {return a*b}, div : function (a, b) {return a/b} } console.log(calculater.add(3,2)); console.log(calculater.sub(3,2)); console.log(calculater.mul(3,2)); console.log(calculater.div(3,2)); Error handling 에러를 관리하는 방법, 예상치 못한 상..