JavaScript toLocaleTimeString() Method
Clash Royale CLAN TAG#URR8PPP
googletag.cmd.push(function() googletag.display('div-gpt-ad-1422003450156-2'); );
JavaScript toLocaleTimeString() Method
❮ JavaScript Date Object
Example
Return the time portion of a Date object as a string, using locale conventions:
var d = new Date();
var n = d.toLocaleTimeString();
<!--
The result of n will be:
var d=new Date();
document.write(d.toLocaleTimeString());
-->Try it Yourself »
Definition and Usage
The toLocaleTimeString() method returns the time portion of a Date object as a string, using locale conventions.
Browser Support
Method | |||||
---|---|---|---|---|---|
toLocaleTimeString() | Yes | Yes | Yes | Yes | Yes |
Syntax
Date.toLocaleTimeString()
Technical Details
Return Value: | A String, representing the time as a string |
---|---|
JavaScript Version: | ECMAScript 1 |
❮ JavaScript Date Object