Skip to content

Instantly share code, notes, and snippets.

@egrueter-dev
Created May 27, 2016 01:25
Show Gist options
  • Save egrueter-dev/ccb7dd63543e79d8a364b3953eead92b to your computer and use it in GitHub Desktop.
Save egrueter-dev/ccb7dd63543e79d8a364b3953eead92b to your computer and use it in GitHub Desktop.
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