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>
 
var test = "I'm global";
function testScope () {
  test = "I'm local";
  console.log (test);     
}
console.log (test);    // output: I'm global
testScope();           // output: I'm local
console.log (test);    // output: I'm local (the global variable is reassigned)
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers