Skip to content

Instantly share code, notes, and snippets.

@jasminegmp
Created February 21, 2020 21:07
Show Gist options
  • Save jasminegmp/a1f2bbe023eef77858333ad700235c85 to your computer and use it in GitHub Desktop.
Save jasminegmp/a1f2bbe023eef77858333ad700235c85 to your computer and use it in GitHub Desktop.
let global = 'I see global.'
function scopeFunction(){
console.log(global);
}
scopeFunction(); // outputs 'I see global.'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment