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>
<button>Run</button>
</body>
</html>
 
var $ = 'jQuery'
var result = (function(){
  var $ = false
  var whatever = 'hi'
  return Math.random() >= 0.5 ? true : false
})()
document.querySelector('button').onclick = function(){
  alert('$ is '+ $)
  alert('result is '+result)
  alert(whatever) // Uncaught ReferenceError: whatever is not defined 
}
Output

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

Dismiss x
public
Bin info
FrankFangpro
0viewers