Last active
November 13, 2017 21:26
-
-
Save fortunee/7e46d829159b36b74ce171dd0ee2c129 to your computer and use it in GitHub Desktop.
Global Scope
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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