gpt4 book ai didi

javascript - 在 JavaScript 中使用一组函数作为原型(prototype)

转载 作者:行者123 更新时间:2023-11-27 22:39:41 25 4
gpt4 key购买 nike

我们使用类似

String.prototype.EndsWith = function(){ ... }

我想做的是拥有几个函数,并能够将它们添加到数字、字符串……或其他任何东西,我试图找到一种具有一组函数的方法,我可以只需向一个对象添加一个原型(prototype),让它访问所有这些函数

最佳答案

你可以做这样的事情。

String.prototype.myMethods = function(){
var self = this;
return {
endsWith: function(str){
if (self.substr(str.length).localeCompare(str) === 0){
return true;
}
return false;
},
beginsWith: function(str){
if (self.substr(0,str.length).localeCompare(str) === 0){
return true;
}
return false;
}
};
};

var str = "String";

console.log(str.myMethods().endsWith("ing"));
console.log(str.myMethods().endsWith("asdf"));
console.log(str.myMethods().beginsWith("Str"));

关于javascript - 在 JavaScript 中使用一组函数作为原型(prototype),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38851884/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com