Team LiB   Previous Section   Next Section
String.toLocaleLowerCase( ) convert a string to lowercase

Availability

JavaScript 1.5; JScript 5.5, ECMAScript v3

Synopsis

string.toLocaleLowerCase( )

Returns

A copy of string, converted to lowercase letters in a locale-specific way. Only a few languages, such as Turkish, have locale-specific case mappings, so this method usually returns the same value as toLowerCase( ).

See Also

String.toLocaleUpperCase( ), String.toLowerCase( ), String.toUpperCase( )

    Team LiB   Previous Section   Next Section