可能标题不好,将尝试更好地解释。

基本上我一直在尝试做一个函数:

var readlineSync = require('readline-sync');
function i(context) {
  readlineSync.question(context)
}

var Username = i("Testing the prompt: ")
console.log(Username)


我发现不得不一遍又一遍地写readlineSync.question有点烦人,但是运行代码会返回以下内容:

Testing the prompt: Hello
undefined


难道我做错了什么?

最佳答案

您不会从该函数返回任何内容。

它应该是:

function i(context) {
  return readlineSync.question(context)
}

关于javascript - 使用JS函数来使用另一个语法吗? node.js,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37259901/

10-12 00:49