gpt4 book ai didi

javascript - 编写原型(prototype)来检查字符串是否为大写

转载 作者:行者123 更新时间:2023-11-30 09:51:44 26 4
gpt4 key购买 nike

我正在尝试编写一个字符串原型(prototype)来检查字符串是否全部为大写。这是我目前所拥有的,我不确定为什么这不起作用。

String.prototype.isUpperCase = function(string) {
if(string === string.toUpperCase()) {
return true;
}else{
return false;
}
}

我希望它像这样工作:

'hello'.isUpperCase() //false
'Hello'.isUpperCase() //false
'HELLO'.isUpperCase() //true

最佳答案

原型(prototype)方法接收 this 中的实例,而不是您的代码似乎期望的第一个参数。试试这个:

String.prototype.isUpperCase = function() {
return String(this) === this.toUpperCase();
}

String(this) 调用确保 this 是一个字符串基元而不是一个字符串对象,后者不会被识别为与 = == 运算符。

关于javascript - 编写原型(prototype)来检查字符串是否为大写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36107424/

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