목차
접기
728x90
반응형
boolean1.js
var bool = false;
var result = () => {
var a = bool ? '사실이다.' : '거짓이다.';
console.log(a);
console.log('결과가 참, 거짓에 따라서 내가 원하는 값을 담을 수 있다.');
}
module.exports = {
result
}
boolean2.js
var func = require('./boolean1');
func.result();
728x90
반응형
LIST
'IT 유용한 정보' 카테고리의 다른 글
[ typescript ] 타입스크립트 프로젝트 실행하는 방법, compile 방법 (0) | 2021.01.10 |
---|---|
[ typescript ] tsc : 이 시스템에서 스크립트를 실행할 수 없으므로 (0) | 2021.01.10 |
[ Node.js ] toLowerCase(), toUpperCase() 사용법 (0) | 2021.01.05 |
[ Node.js ] switch 사용법 (0) | 2021.01.05 |
[ Node.js ] module.exports 사용법 (0) | 2021.01.05 |