Skip to content

Instantly share code, notes, and snippets.

@deepaksisodiya
Created December 21, 2014 11:41
console.log(a); // undefined
var a = 10;
console.log(a); // 10
greet(); // "Hello"
function greet() {
console.log("Hello");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment