Skip to content

Instantly share code, notes, and snippets.

@abrarShariar
Created February 20, 2016 09:20
Show Gist options
  • Select an option

  • Save abrarShariar/4dd4aa6e826aef7dcc12 to your computer and use it in GitHub Desktop.

Select an option

Save abrarShariar/4dd4aa6e826aef7dcc12 to your computer and use it in GitHub Desktop.
script using prompt in JavaScript
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