Created
February 20, 2016 09:20
-
-
Save abrarShariar/4dd4aa6e826aef7dcc12 to your computer and use it in GitHub Desktop.
script using prompt in JavaScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var person=prompt("Please enter your name: "); | |
| if(person==null || person==""){ | |
| document.write("WTF !! Where is your name ??"); | |
| }else{ | |
| document.write("Hello "+person); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment