Skip to content

Instantly share code, notes, and snippets.

@fortunee
Last active November 13, 2017 21:26
Show Gist options
  • Save fortunee/7e46d829159b36b74ce171dd0ee2c129 to your computer and use it in GitHub Desktop.
Save fortunee/7e46d829159b36b74ce171dd0ee2c129 to your computer and use it in GitHub Desktop.
Global Scope
var name = 'Fortune';
var age = 22;
function func() {
// Both name and age can be accessed here
console.log(`The name is ${name}, and I'm ${age} years old`);
}
func() // 'The name is Fortune, and I'm 22 years old'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment