Skip to content

Instantly share code, notes, and snippets.

@eamon0989
Created August 19, 2021 06:18
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 eamon0989/d66ed5150b2761d4288072542767cd1a to your computer and use it in GitHub Desktop.
Save eamon0989/d66ed5150b2761d4288072542767cd1a to your computer and use it in GitHub Desktop.
let name = 'Eamon';
function printName() {
console.log(name);
}
printName(); // => 'Eamon'
name = 'Jack';
printName(); // => 'Jack'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment