- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
For Hosts Locale how to convert a string to lowercase letters in JavaScript?
To convert a string to lowercase letters in JavaScript, use the toLocaleLowerCase() method.
Example
You can try to run the following code to learn how to work with toLocaleLowerCase() method in JavaScript −
<!DOCTYPE html> <html> <body> <script> var a = "WELCOME!"; document.write(a.toLocaleLowerCase()); </script> </body> </html>
- Related Articles
- For the Hosts Locale how to convert a string to uppercase letters in JavaScript?
- How to convert lowercase letters in string to uppercase in Python?
- How to convert all uppercase letters in string to lowercase in Python?
- Write a C program to convert uppercase to lowercase letters without using string convert function
- Swift Program to Convert a String to Lowercase
- How to convert a date to a string using current locale's conventions?
- Convert string to lowercase or uppercase in Arduino
- Java program to convert a string to lowercase and uppercase.
- Is there a MySQL command to convert a string to lowercase?
- How to invert case for all letters in a string in Python?
- How to convert a string to JavaScript object?
- How to create a vector with lowercase as well as uppercase letters in R?
- How to return a passed string with letters in alphabetical order in JavaScript?
- How to convert a string in to a function in JavaScript?
- How to convert a string to camel case in JavaScript?

Advertisements