Created
August 23, 2017 16:18
-
-
Save benwurth/d164a95a2eeaa3c7fb5a5c71c27bc432 to your computer and use it in GitHub Desktop.
Get started running JavaScript code in your browser
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>title</title> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
// Code goes here | |
console.log("Hello, World!"); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment