Skip to content

Instantly share code, notes, and snippets.

@deepaksisodiya
Last active November 8, 2015 16:23
var name = 'Deepak';
(function() {
var city = 'Pune';
console.log(city); // Pune
})();
console.log(name); // Deepak
console.log(city)
// "ReferenceError: city is not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment