Skip to content

Instantly share code, notes, and snippets.

@mr-fool
Last active August 29, 2015 14:09
Show Gist options
  • Select an option

  • Save mr-fool/0ee5aafa747d4bb3b943 to your computer and use it in GitHub Desktop.

Select an option

Save mr-fool/0ee5aafa747d4bb3b943 to your computer and use it in GitHub Desktop.
javascript greeting fun
<html><body><pre><script src="greeting.js">
</script></pre></body></html>
var name = prompt("Please enter your name")
function greet(who) {
document.writeln("Hello " + who +"<br>");
}
greet(name);
document.writeln("Bye");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment