如何使用Node.js中另一个文件中的函数?

时间:2018-07-29 00:16:31

标签: node.js

我正在构建一个Node.js应用程序,它具有许多功能和对象。因此,为了使代码更整洁,我想将它们放在单独的文件中。

这里是一个例子。

functions.js

function compare(a,b) {
    if (a == b) {
        return true;
    } else {
        return false;
    }
}

index.js

let a = 1;
let b = 1;
// i want to use that function here
console.log(compare(a,b));

该怎么做?不仅是函数,还有对象和其他变量。

0 个答案:

没有答案