Access global scope from inside a function
var greeting = "Hi there!"; // global scope | |
function sayHello() { | |
console.log(greeting); | |
} | |
sayHello(); // Prints "Hi there !" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment