CoffeeScript String - toLocaleLowerCase()



Description

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

Syntax

Given below is the syntax of toLocaleLowerCase() method of JavaScript. We can use the same method in the CoffeeScript code.

string.toLocaleLowerCase( )

Example

The following example demonstrates the usage of toLocaleLowerCase() method of JavaScript in CoffeeScript code. Save this code in a file with name toLocaleLowerCase.coffee

str = "APPLES ARE ROUND AND ORANGES ARE JUCY.";
console.log str.toLocaleLowerCase()

Open the command prompt and compile the .coffee file as shown below.

c:\> coffee -c coffee toLocaleLowerCase.coffee

On compiling, it gives you the following JavaScript.

// Generated by CoffeeScript 1.10.0
(function() {
  var str;

  str = "APPLES ARE ROUND AND ORANGES ARE JUCY.";

  console.log(str.toLocaleLowerCase());

}).call(this);

Now, open the command prompt again and run the CoffeeScript file as shown below.

c:\> coffee toLocaleLowerCase.coffee

On executing, the CoffeeScript file produces the following output.

apples are round and oranges are juicy.
coffeescript_strings.htm
Advertisements