THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

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