Skip to content Skip to sidebar Skip to footer

Node.js Prompt-sync Repeats Prompt When Using Newline Characters

I'm working on a JavaScript assignment that requires me to use prompt-synch in Node.JS. It works fine until I try to use a newline character \n within the prompt, at which point ev

Solution 1:

You can try this instead.

if (guess < answer) {
  console.log("Too low!");
  guess = prompt("> ");
} elseif (guess > answer) {
  console.log("Too high!");
  guess = prompt("> ");
}

If this does not work then it is likely an issue with another part of your own code. If it does, then it is likely an issue with the prompt-sync module, which makes this a valid workaround if you believe it is.

Post a Comment for "Node.js Prompt-sync Repeats Prompt When Using Newline Characters"