Created
May 27, 2016 01:25
-
-
Save egrueter-dev/ccb7dd63543e79d8a364b3953eead92b to your computer and use it in GitHub Desktop.
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 a = “first variable”; | |
function myfunction () { | |
var b = “ second variable”; | |
console.log(b); | |
} | |
console.log(a) // => ‘first variable’ | |
myfunction(); //=> ‘second variable’ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment