getMilliseconds Method

Returns the milliseconds value in a Date object using local time.

function getMilliseconds() : Number

Remarks

To get the number of milliseconds in Coordinated Universal Time (UTC), use the getUTCMilliseconds method.

The millisecond value returned can range from 0-999.

Example

The following example illustrates the use of the getMilliseconds method.

function TimeDemo(){
   var d, s = "The current local time is: ";
   var c = ":";
   d = new Date();
   s += d.getHours() + c;
   s += d.getMinutes() + c;
   s += d.getSeconds() + c;
   s += d.getMilliseconds();
   return(s);
}

Requirements

Version 3

Applies To:

Date Object

See Also

Reference

getUTCMilliseconds Method

setMilliseconds Method

setUTCMilliseconds Method