Skip to content

Instantly share code, notes, and snippets.

@topherPedersen
Created October 10, 2019 21:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save topherPedersen/e33a20b699b523d9b34068ae1c9e3f4e to your computer and use it in GitHub Desktop.
Save topherPedersen/e33a20b699b523d9b34068ae1c9e3f4e to your computer and use it in GitHub Desktop.
Basic User Interface Tutorial in JavaScript by Jonathan
<h1>Basic User Interface in javaScript</h1>
<script>
alert("is how we display text.")
var name = prompt("who dis??")
alert("Hello, " + name);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment