Skip to content

Instantly share code, notes, and snippets.

@jasminegmp
Last active February 21, 2020 22:46
Show Gist options
  • Save jasminegmp/12a31431037c8538d7084d4186294c23 to your computer and use it in GitHub Desktop.
Save jasminegmp/12a31431037c8538d7084d4186294c23 to your computer and use it in GitHub Desktop.
var a = 'hi';
function myFunction(){
console.log(a);
var a = 'hello';
console.log(a);
}
myFunction();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment