mymodule.js 138 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 // 아래 2개의 함수를 모듈로 정의하는 것이 필요함 function add(a,b) { return a+b; } function sub(a,b) { return a-b; }