TypeScript - String toLowerCase()



This method returns the calling string value converted to lowercase.

Syntax

string.toLowerCase( )

Return Value

Returns the calling string value converted to lowercase.

Example

var str = "Apples are round, and Apples are Juicy."; 
console.log(str.toLowerCase( ))

On compiling, it will generate the same code in JavaScript.

Its output is as follows −

apples are round, and apples are juicy.
typescript_strings.htm
Advertisements