I am learning backbone.js, in it's tutorial, it has the following code
var object = {};
_.extend(object, Backbone.Events);
...
I don't understand the "_" in the code, what does it means? and what is this "extend"? does it has the same meaning as jQuery.extend ?
It copies all the Backbone.Events properties over to the object. Extend is a method from the underscore library:
http://documentcloud.github.com/underscore/#extend
I'd say it's the same as the jQuery method.
From Backbone's own homepage :
Backbone's only hard dependency is
Underscore.js.
_
is the object created by Underscore.js, in the same way as $
is the jQuery object
http://documentcloud.github.com/underscore/#extend as for what _.extend
does.