THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

JavaScript String toLocaleUpperCase() Method

JavaScript String Reference JavaScript String Reference

Example

Convert the string to uppercase letters:

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

The result of res could be:

HELLO WORLD!
Try it yourself »

Definition and Usage

The toLocaleUpperCase() method converts a string to uppercase letters, according to the host's current locale.

The locale is based on the language settings of the browser.

Generally, this method returns the same result as the toUpperCase() method. However, for some locales, where language conflict with the regular Unicode case mappings occurs (such as Turkish), the results may vary.

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

Tip: Use the toLocaleLowerCase() method to convert a string to lowercase letters, according to the host's current locale.


Browser Support

Method
toLocaleUpperCase() Yes Yes Yes Yes Yes

Syntax

string.toLocaleUpperCase()

Parameters

None.

Technical Details

Return Value: A String, representing the value of a string converted to uppercase according to the host's current locale
JavaScript Version: 1.2

JavaScript String Reference JavaScript String Reference