通过原生对象的原型,不仅可以取得所有默认方法的原型,而且还可以定义新的方法。
在原型上定义一个新的方法。
String.prototype.startWith = function(text) {
return this.indexOf(text) == 0;
}
var str = 'Hello,World';
var res = str.startWith('Hello');
console.log(res); //true
通过原生对象的原型,不仅可以取得所有默认方法的原型,而且还可以定义新的方法。
在原型上定义一个新的方法。
String.prototype.startWith = function(text) {
return this.indexOf(text) == 0;
}
var str = 'Hello,World';
var res = str.startWith('Hello');
console.log(res); //true