How do I pop up an alert in Javascript?
I tried alert\"HELLO\" but that didn\'t work.
alert\"HELLO\"
Can someone tell me the correct syntax?
Oh by the
You need to add parentheses:
alert("HELLO");