CoffeeScript Date - toLocaleTimeString()



Description

The toLocaleTimeString() method converts a date to a string, returning the "date" portion using the current locale's conventions.

The toLocaleTimeString method relies on the underlying operating system in formatting dates. It converts the date to a string using the formatting convention of the operating system where the script is running. For example, in the United States, the month appears before the date (04/15/98), whereas in Germany, the date appears before the month (15.04.98).

Syntax

Given below is the syntax of toLocaleTimeString() method.

Date.toLocaleTimeString()

Return Value

Returns the formatted date in a string format.

Example

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

dt = new Date(1993, 6, 28, 14, 39, 7);
console.log dt.toLocaleTimeString() 

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

c:\> coffee -c date_tolocaletimestring.coffee

On compiling, it gives you the following JavaScript.

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

  dt = new Date(1993, 6, 28, 14, 39, 7);

  console.log(dt.toLocaleTimeString());

}).call(this);

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

c:\> coffee date_tolocaletimestring.coffee

On executing, the CoffeeScript file produces the following output.

2:39:07 PM
coffeescript_date.htm
Advertisements