문자열을 수정하려면 toUpperCase()뿐만 아니라 toLowerCase()를 사용할 수 있습니다. 다음이 우리의 문자열이라고 가정해 봅시다 -
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