Skip to content

Instantly share code, notes, and snippets.

@v1w3
Created June 28, 2017 09:30
Show Gist options
  • Save v1w3/af78b6897a39f8ecb3814540ec682b3d to your computer and use it in GitHub Desktop.
Save v1w3/af78b6897a39f8ecb3814540ec682b3d to your computer and use it in GitHub Desktop.
Get Programming with JS - The Crypt // source https://jsbin.com/cisifag
<!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>
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