使用JavaScript用多种方法修改字符串的更好方法

要修改字符串,可以使用toLowerCase()toUpperCase()。假设以下是我们的字符串-

var sentence = "tHIS iS tHE JavaScript pROGRAM";

要在适当情况下进行修改和显示,代码如下-

示例

var sentence = "tHIS iS tHE JavaScript pROGRAM";
function modifyStringWithMultipleMethods(sentence) {
   return sentence.charAt(0).toUpperCase() +
   sentence.slice(1).toLowerCase();
}
console.log(modifyStringWithMultipleMethods(sentence));

要运行上述程序,您需要使用以下命令-

node fileName.js.

在这里,我的文件名为demo51.js。

输出结果

这将产生以下输出-

PS C:\Users\Amit\JavaScript-code> node demo51.js
This is the JavaScript program