CoffeeScript Date - toUTCString()



Description

The toUTCString() Method returns the time portion of a Date object in human readable form.

Syntax

Given below is the syntax of toUTCString() method.

Date.toUTCString()

Return Value

Returns converted date to a string, using the universal time convention.

Example

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

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

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

c:\> coffee -c date_toutcstring.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.toUTCString());

}).call(this);

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

c:\> coffee date_toutcstring.coffee

On executing, the CoffeeScript file produces the following output.

Wed, 28 Jul 1993 09:09:07 GMT
coffeescript_date.htm
Advertisements