Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

javascript "prompt is not defined" Reference Error

Tags:

javascript

(function() {
    var random_num = Math.floor(Math.random()*10) + 1;
    var input_num = prompt("Guess the number between 1 and 10");
    if (input_num < 1 || input_num > 10) {
        alert('the input number is not between 1 and 10');

    } else if (random_num == input_num) {
        alert('Good Work');
    } else {
        alert('Not matched, the random number is: ' + random_num);
    }

})();

But the IDE displays that "prompt" is not defined. Could someone help me explain why?

like image 331
Alec_N Avatar asked Apr 29 '26 08:04

Alec_N


1 Answers

Assuming you're using JSHint in WebStorm, set Preferences > Languages & Frameworks > JavaScript > Code Quality Tools > JSHint > Environments > Browser to true

Screenshot of WebStorm settings

Update: Also, as mentioned earlier, for good code you should use window.prompt, just so it's clear you're using the built in browser prompt rather than a custom function etc... (the same goes for alert, so use window.alert)

Finally, unrelated to the question, but something I noticed - it's good practice to use the === operator. There are a million articles online explaining why :)

like image 64
jamesaw22 Avatar answered May 01 '26 20:05

jamesaw22



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!