FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

JavaScript toTimeString() Method

Date Object Reference JavaScript Date Object

Example

Convert the time portion of a Date object to a string:

var d = new Date();
var n = d.toTimeString();

The result of n will be:

Try it Yourself »

Definition and Usage

The toTimeString() method converts the time portion of a Date object to a string.


Browser Support

Method
toTimeString() Yes Yes Yes Yes Yes

Syntax

Date.toTimeString()

Parameters

None

Technical Details

Return Value: A String, representing the time as a string

Date Object Reference JavaScript Date Object