我在notes.js中有以下代码
$(".dpdatainicio, .dpdatafim").trigger("dp.change");
和app.je
module.exports.addNote = () => {
console.log('addNote');
return 'New Note';
};
但是,当我启动它时,它仅显示console.log而不显示返回“ New Note”
const notes = require('./notes.js');
var res = notes.addNote();
为什么?
答案 0 :(得分:2)
该函数返回一个值。它不打印值,因为您不这样做。如果您需要输出res
,请输出:
const notes = require('./notes.js');
var res = notes.addNote();
console.log(res);