我有一个原型模型,我需要在原型中包含以下扩展方法:
String.prototype.startsWith = function(str){
return (this.indexOf(str) === 0);
}
示例:[JS]
sample = function() {
this.i;
}
sample.prototype = {
get_data: function() {
return this.i;
}
}
在原型模型中,如何使用扩展方法或任何其他方式在 JS 原型模型中创建扩展方法。