Created
November 7, 2018 16:22
-
-
Save arrested-developer/ffdb865a28bd4c8925a6f5ea8ca3459f to your computer and use it in GitHub Desktop.
// source https://jsbin.com
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"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> | |
// assign variables | |
var a = 1 | |
var b = 2 | |
// calculate | |
var sum = a + b; | |
// display answer | |
console.log(sum) | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">// assign variables | |
var a = 1 | |
var b = 2 | |
// calculate | |
var sum = a + b; | |
// display answer | |
console.log(sum)</script></body> | |
</html> |
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
// assign variables | |
var a = 1 | |
var b = 2 | |
// calculate | |
var sum = a + b; | |
// display answer | |
console.log(sum) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment