JavaScript String toLowerCase() Method

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP







<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]
-->



JavaScript String toLowerCase() Method



Previous
JavaScript String Reference
Next

<!--

❮ JavaScript String Reference

-->



Example


Convert the string to lowercase letters:



var str = "Hello World!";
var res = str.toLowerCase();

<!--

The result of res will be:



hello world!
-->
Try it Yourself »


Definition and Usage


The toLowerCase() method converts a string to lowercase letters.


Note: The toLowerCase() method does not change the original
string.


Tip: Use the toUpperCase()
method to convert a string to uppercase letters.



Browser Support














Method
toLowerCase() Yes Yes Yes Yes Yes

Syntax



string.toLowerCase()

Parameters



None.

Technical Details






Return Value: A String, representing the value of a string converted to lowercase
JavaScript Version: ECMAScript 1


Previous
JavaScript String Reference
Next

<!--

❮ JavaScript String Reference

-->