How to Lowercase a String in JavaScript _ - GeeksforGeeks
How to Lowercase a String in JavaScript _ - GeeksforGeeks
- GeeksforGeeks
DSA with JS - Self Paced JS Tutorial JS Exercise JS Interview Questions JS Array JS String JS Object
Table of Content
Using the toLowerCase() Method
Using a Custom Function with map() and toLowerCase()
Using a Regular Expression
We use cookies to ensure you have the best browsing experience on our website. By using
our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Got It !
Policy
https://www.geeksforgeeks.org/how-to-lowercase-a-string-in-javascript/?ref=ml_lbp 1/7
15/04/2024, 12:44 How to Lowercase a String in JavaScript ? - GeeksforGeeks
Javascript
Output
hello world
Javascript
function toLowerCaseCustom(string) {
return string.split('').map(char => char.toLowerCase()).join('');
}
https://www.geeksforgeeks.org/how-to-lowercase-a-string-in-javascript/?ref=ml_lbp 2/7
15/04/2024, 12:44 How to Lowercase a String in JavaScript ? - GeeksforGeeks
Output
hello world
Javascript
function toLowerCaseRegex(string) {
return string.replace(/[A-Z]/g, match => match.toLowerCase());
}
Output
hello world
Get 90% Course fee refund in just 90 Days! Also get 1:1 Mock Interview,
Job assistance and more additional benefits on selected courses. Take up
the Three 90 challenge today!
We use cookies to ensure you have the best browsing experience on our website. By using
our site, you acknowledge that you have read and understood our Cookie Policy & Privacy
Policy
https://www.geeksforgeeks.org/how-to-lowercase-a-string-in-javascript/?ref=ml_lbp 3/7
15/04/2024, 12:44 How to Lowercase a String in JavaScript ? - GeeksforGeeks
“This course was packed with amazing and well-organized content! The
project-based approach of this course made it even better to understand
concepts faster. Also the instructor in the live classes is really good and
knowledgeable.”- Tejas | Deutsche Bank
With our revamped Full Stack Development Program: master Node.js and
React that enables you to create dynamic web applications.
So get ready for salary hike only with our Full Stack Development Course.
Suggest improvement
Previous Next
Similar Reads
JavaScript Program to Check if a String How to Convert a String to Lowercase
Contains Uppercase, Lowercase, in JavaScript ?
Special Characters and Numeric Values
How to replace lowercase letters with How to create a new object from the
an other character in JavaScript ? specified object, where all the keys are
in lowercase in JavaScript?
https://www.geeksforgeeks.org/how-to-lowercase-a-string-in-javascript/?ref=ml_lbp 4/7
15/04/2024, 12:44 How to Lowercase a String in JavaScript ? - GeeksforGeeks
A amanv09
Company Explore
About Us Job-A-Thon Hiring Challenge
Legal Hack-A-Thon
Careers GfG Weekly Contest
In Media Offline Classes (Delhi/NCR)
Contact Us DSA in JAVA/C++
Advertise with us Master System Design
GFG Corporate Solution Master CP
Placement Training Program GeeksforGeeks Videos
Geeks Community
Java Algorithms
C++ DSA for Beginners
PHP Basic DSA Problems
GoLang DSA Roadmap
SQL DSA Interview Questions
R Language Competitive Programming
Android Tutorial
https://www.geeksforgeeks.org/how-to-lowercase-a-string-in-javascript/?ref=ml_lbp 6/7
15/04/2024, 12:44 How to Lowercase a String in JavaScript ? - GeeksforGeeks