Skip to content

Instantly share code, notes, and snippets.

@jnicklas
Created January 22, 2016 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnicklas/09ee198d8dc198ee2226 to your computer and use it in GitHub Desktop.
Save jnicklas/09ee198d8dc198ee2226 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<body>
<ul>
</ul>
<script>
(function() {
var a = 10, b = 20;
setTimeout(function() {
debugger;
console.log(a);
}, 500);
})();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment