我正在查看 jQuery 核心代码并注意到以下内容:
var core_indexOf = Array.prototype.indexOf,
core_toString = Object.prototype.toString
后来这些的用法是:
core_indexOf.call(arr, elem, i);
core_toString.call(obj);
这仅仅是给函数名起别名还是使用这种技术有性能优势?
我正在查看 jQuery 核心代码并注意到以下内容:
var core_indexOf = Array.prototype.indexOf,
core_toString = Object.prototype.toString
后来这些的用法是:
core_indexOf.call(arr, elem, i);
core_toString.call(obj);
这仅仅是给函数名起别名还是使用这种技术有性能优势?