모듈 시스템을 알아보자. 모듈은 동기적 호출일까? Require vs Import
모듈?관련된 코드들을 하나의 코드 단위로 캡슐화한 하나의 파일을 말한다. CommonJS (CJS)Require 키워드를 사용한 모듈 시스템을 말한다.Node.js와 구버전의 브라우저에서 주로 사용한다.module.exports와 exports 두 가지 방법으로 모듈을 내보낼 수 있다 예시1. module.exports// arithmetic.jsclass Arithmetic { constructor(a, b) { this.a = a; this.b = b; } add() {return this.a + this.b;} subtract() {return this.a - this.b;}}; module.exports = Arithmetic;// main.jsco..