Skip to content

Instantly share code, notes, and snippets.

View tromboneamafone's full-sized avatar

Robert Bevly tromboneamafone

View GitHub Profile
anonymous
anonymous / gist:3907617
Created October 17, 2012 19:33
Scoping
var a = 1, b = 2;
var newScope = function(){
var a = 3, c = 4;
console.log(a);
console.log(b);
console.log(c);
};
console.log(a);