Home  >  Article  >  Web Front-end  >  How to convert a string to lowercase letters in JavaScript?

How to convert a string to lowercase letters in JavaScript?

WBOY
WBOYforward
2023-09-17 08:49:021257browse

How to convert a string to lowercase letters in JavaScript?

To convert a string in JavaScript to lowercase, use the toLocaleLowerCase() method.

Example

You can try running the following code to learn how to use toLocaleLowerCase() method in JavaScript -

Live Demonstration

<!DOCTYPE html>
<html>
   <body>
      <script>
         var a = "WELCOME!";
         document.write(a.toLocaleLowerCase());
      </script>
   </body>
</html>

The above is the detailed content of How to convert a string to lowercase letters in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete