为什么调用导出函数返回无值

时间:2018-09-18 21:45:33

标签: node.js

我在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();

为什么?

1 个答案:

答案 0 :(得分:2)

该函数返回一个值。它不打印值,因为您不这样做。如果您需要输出res,请输出:

const notes = require('./notes.js');
var res = notes.addNote();
console.log(res);