使用 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

更新时间: 03-Sep-2020

353 次浏览

开启你的 职业

完成本课程并获得认证

开始
广告