Nodejs

 

 

 

 

 

 

 

 

calc.js

exports.add= function (a, b){
    return a +b;  
};

 

ch02_test5.js

var calc =require('./calc');
console.log('모듈로 분리한 후 - calc.add : ' +  calc.add(20, 20));

 

Command: node "C:/Program Files (x86)/Brackets/samples/ko/Getting Started/macaronics/ch02_test5.js"

Working directory: C:/Program Files (x86)/Brackets/samples/ko/Getting Started/macaronics/

모듈로 분리한 후 - calc.add : 40

Program exited with code 0

 

 

 

 

 

 

about author

PHRASE

Level 60  라이트

남산골 샌님이 역적 바라듯 한다 , 가난한 사람이 엉뚱한 일을 바라는 경우를 이르는 말.

댓글 ( 4)

댓글 남기기

작성