We will see the conversion one by one below.
To convert a text into lowercase using JavaScript:
- function toLowerCase(str) {
- return str.toLowerCase();
- }
You can use this as in the following:
- alert(toLowerCase("HELLO WORLD"));
To convert text into uppercase using JavaScript:
- function toUpperCase(str) {
- return str.toUpperCase();
- }
You can use this as in the following:
- alert(toUpperCase("hello world"));
To convert text into Titlecase using JavaScript:
- function toTitleCase(str) {
- return str.replace(/\w\S*/g,
- function (txt) {
- return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
- });
- }
You can use this by calling:
- alert(toTitleCase("hello world"));
Summary
Hope you all enjoyed reading this article. Let me know your thoughts and views via comments.