TypeScript - String toLocaleUpperCase()



This method is used to convert the characters within a string to uppercase while respecting the current locale. For most languages, it returns the same output as toUpperCase.

Syntax

string.toLocaleUpperCase( )

Return Value

Returns a string in uppercase with the current locale.

Example

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

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