var jQuery = function(global, factory) {
return new jQuery.fn.init();
}
jQuery.fn = jQuery.prototype = {
constructor: jQuery,
init: function() {
this.jquery = 3;
return this;
},
each: function() {
console.log('each');
return this;
}
}
jQuery.fn.init.prototype = jQuery.fn;
// init构造函数
jQuery().each().each()
上面是一段jQuery原始碼,我的問題是為什麼程式碼最後一行的第二個each
函數還能夠執行