Horje
best method to convert string to upper case manually Code Example
best method to convert string to upper case manually
function myToUpperCase(str) {
  var newStr = '';
  for (var i=0;i<str.length;i++) {
    var thisCharCode = str[i].charCodeAt(0);
    if ((thisCharCode>=97 && thisCharCode<=122)||(thisCharCode>=224 && thisCharCode<=255)) {
    	newStr += String.fromCharCode(thisCharCode - 32);
    } else {
    	newStr += str[i];
    }
  }
  return newStr;
}
console.log(myToUpperCase('helLo woRld!')); // => HELLO WORLD!
console.log(myToUpperCase('üñïçødê')); // => ÜÑÏÇØDÊ




Whatever

Related
what is port Code Example what is port Code Example
flutter No file or variants found for asset: assets/resources/2.0x. Code Example flutter No file or variants found for asset: assets/resources/2.0x. Code Example
how to make size in roblox studio Code Example how to make size in roblox studio Code Example
postman body raw variable Code Example postman body raw variable Code Example
pinkie pie Code Example pinkie pie Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7