How to fix the prompt is not defined error in Node.js
In this tutorial, we are going to learn about how to fix The “ReferenceError: prompt is not defined” in Node.js.
When we use a prompt() method in the Node.js app to print something on the webpage, we will see the following error in the node.js command line.
Here is an example, of how we get the error:
const msg = 'Total score';
prompt(msg);
Output:
"ReferenceError: prompt is not defined"
This error occurs because we are using the ‘prompt()’ method in the server side Node.js environment.
But the prompt() method is only available in the browser environment, like mostly in front end code we can use that method.
To fix the ‘prompt’ is not defined error, we can use console.log() method in place of prompt()
method.
const msg = 'Total score';
console.log(msg);
We can also check if we are in the browser environment or server side by using the window object in Node.js.
if(typeof window === "undefined"){
console.log("Server side");
}else{
console.log("Browser environment");
}