Skip to content

Instantly share code, notes, and snippets.

@sjschmidt44
Last active January 16, 2018 00:52
Show Gist options
  • Save sjschmidt44/556d31146a2b1ff3be84820e5fc06959 to your computer and use it in GitHub Desktop.
Save sjschmidt44/556d31146a2b1ff3be84820e5fc06959 to your computer and use it in GitHub Desktop.
'use strict'
var foo = 'bar';
function bar() {
var foo = 'baz';
function baz(foo) {
foo = 'bam';
bam = 'yay';
}
baz();
}
bar();
foo;
bam;
baz();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment