Created
June 28, 2017 09:30
-
-
Save v1w3/af78b6897a39f8ecb3814540ec682b3d to your computer and use it in GitHub Desktop.
Get Programming with JS - The Crypt // source https://jsbin.com/cisifag
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>Get Programming with JS - The Crypt</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> | |
var score; //create a new variable and name it "score" | |
score = "100"; //assign a value ("100") to the variable | |
console.log(score); //displaying the variable in the console | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">var score; //create a new variable and name it "score" | |
score = "100"; //assign a value ("100") to the variable | |
console.log(score); //displaying the variable in the console</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
var score; //create a new variable and name it "score" | |
score = "100"; //assign a value ("100") to the variable | |
console.log(score); //displaying the variable in the console |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment