Pages

Javascript String - toLowerCase() Method

4/6/14

Description:

This method returns the calling string value converted to lowercase.

Syntax:

string.toLowerCase( )
Here is the detail of parameters:
  • NA

Return Value:

  • Returns the calling string value converted to lowercase.

Example:

<html>
<head>
<title>JavaScript String toLowerCase() Method</title>
</head>
<body>
<script type="text/javascript">

var str = "Apples are round, and Apples are Juicy.";

document.write(str.toLowerCase( ));
</script>
</body>
</html>
This will produce following result:
apples are round, and apples are juicy.

No comments:

Post a Comment

Related Posts