我正在嘗試編寫一個字符串原型來檢查字符串是否全部是大寫字母。這是迄今爲止我所知道的,我不確定爲什麼這不起作用。編寫原型來檢查字符串是否大寫
String.prototype.isUpperCase = function(string) {
if(string === string.toUpperCase()) {
return true;
}else{
return false;
}
}
我希望它是這樣工作的:
'hello'.isUpperCase() //false
'Hello'.isUpperCase() //false
'HELLO'.isUpperCase() //true
好的,很有道理謝謝你清理那個! – JuniorSauce