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 11.01
 * Declare, assign and use a variable
 */
var mountain;
mountain = "Ben Nevis";
console.log(mountain);
/* Further Adventures
 *
 * Run the program, then at the console prompt:
 *
 * 1) Type mountain and press enter.
 *
 * The value assigned to the mountain variable
 * should be displayed.
 *
 * mountain is a global variable.
 * It can be accessed anywhere in the program.
 *
 * 2) Assign the mountain variable a new value.
 *    e.g. mountain = "Everest"
 *
 * 3) Type mountain and press enter.
 *
 */
Output

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

Dismiss x
public
Bin info
jrlarsenpro
0viewers