在 JavaScript 中不使用 String.prototype.toUpperCase() 更改大小写
问题
我们需要编写一个基于字符串类原型对象的JavaScript函数。
此函数应该简单地将字符串中所有字母的大小写更改为大写并返回新字符串。
示例
以下是代码-
const str = 'This is a lowercase String';
String.prototype.customToUpperCase = function(){
const legend = 'abcdefghijklmnopqrstuvwxyz';
const UPPER = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
let res = '';
for(let i = 0; i < this.length; i++){
const el = this[i];
const index = legend.indexOf(el);
if(index !== -1){
res += UPPER[index];
}else{
res += el;
};
};
return res;
};
console.log(str.customToUpperCase());输出结果以下是控制台输出-
THIS IS A LOWERCASE STRING