标签: javascript function prototype
为什么从基础调用某些方法,而从对象的原型调用其他方法?
例如,String.fromCharCode()是一种基本方法,而不是作为原型方法的String.prototype.charAt()和String.prototype.indexOf()。 为什么不是以相同的方式调用内置对象的所有方法?
String.fromCharCode()
String.prototype.charAt()
String.prototype.indexOf()