js 原型方法调用
var x = ['a', 'b', 'c']; Array.prototype.indexOf.call(x, 'b'); Array.prototype.indexOf.apply(x, ['b']);