Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
/* Get Programming with JavaScript
 * Listing 2.10
 * Declaring and assigning a variable with let
 */
// declare the variable
let score;
// assign it a value
score = 100;
console.log(score);
// assign a new value
score = score + 50;
console.log(score);
/* Further Adventures
 *
 * 1) Assign a new value to the score variable.
 *
 * 2) Log the new value to the console.
 *
 * 3) Declare two more variables using let,
 *    and assign them values.
 *
 */
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
jrlarsenpro
0viewers