Reputation: 4968
At the start of the source code for underscore.js, you see this:
var root = this;
var previousUnderscore = root._;
So the question becomes why didnt the author just write:
var previousUnderscore = this._;
Upvotes: 2
Views: 108
Reputation: 11211
Two reasons,
Upvotes: 1