What does “_” means here?

2019-04-03 05:06发布

问题:

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 ?

回答1:

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.



回答2:

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.