TypeScript – String toUpperCase()

uppercase

This method returns the calling string value converted to uppercase.

Syntax

string.toUpperCase( )

Return Value

Returns a string representing the specified object.

Example

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

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

Its output is as follows −

APPLES ARE ROUND, AND APPLES ARE JUICY.

Previous page:-Click Here

This Post Has One Comment

Leave a Reply