+ 1
JS alert not working
https://code.sololearn.com/c4K6oOp7UXWV/?ref=app JS alert and promts now working? Python works fine tho, anyone able to help me out
3 Answers
+ 6
WiseFries
alert will not work in Node JS
Use console.log
try this:
alert('hi')
function alert(msg) {
console.log(msg)
}
+ 2
alert is part of the browser api. Node.js doesn't run in a browser.
+ 2
thanks both of u, didnt realize lol