Created
July 6, 2020 10:24
-
-
Save ivanteoh/2ad58b3df15818e141742b9ac236a879 to your computer and use it in GitHub Desktop.
Javascript: 101 Sign Up
This file contains 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 lang="en"> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> | |
<title>JavaScript 101</title> | |
<script type="text/javascript"> | |
function load() | |
{ | |
var total = 2 + 2; | |
alert(total + ''); | |
} | |
</script> | |
</head> | |
<body onload="load()"> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment