Skip to content

Instantly share code, notes, and snippets.

@jameshibbard
Created February 3, 2013 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jameshibbard/4703380 to your computer and use it in GitHub Desktop.
Save jameshibbard/4703380 to your computer and use it in GitHub Desktop.
Simple addition with JavaScript
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Simple addition</title>
</head>
<body>
<p>Two times two is: <span id="result"></span><p>
<script>
document.getElementById("res").innerHTML(2*2);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment