JavaScript | date.getMilliseconds() Function
The date.getMilliseconds() is an inbuilt function in JavaScript which is used to fetch the milliseconds from a given Date object.
Syntax:
DateObj.getMilliseconds()
In the above syntax, DateObj is a valid Date object created using Date() conctructor from which we want to fetch milliseconds.
Parameter: This function does not takes any parameter. It is just used along with a Date Object from which we want to fetch milliseconds.
Return values: It returns the millisecond for the given date object. Milliseconds is an integer value ranging from 0 to 999.
Below program illustrate the getMilliseconds() function:
- Example 1:
<script>// Here a date has been assigned// while creating Date objectvarDateObj =newDate('October 15, 1996 05:35:32:77');// millisecond from above date object is// being extracted using getMilliseconds().varmillisec = DateObj.getMilliseconds();// Printing milliseconddocument.write(millisec);</script>chevron_rightfilter_noneOutput:
77
Errors and Exceptions:
- Example 1: The date of the month should must lie in between 1 to 31 because none of the month have date greater than 31 that is why it returns NaN i.e, not a number because date for the month does not exist.
<script>// Here a date has been assigned// while creating Date objectvarDateObj =newDate('October 33, 1996 05:35:32:77');// millisecond from above dateobject is// being extracted using getMilliseconds().varmillisec = DateObj.getMilliseconds();// Printing milliseconddocument.write(millisec);</script>chevron_rightfilter_noneOutput:
NaN
- Example 2: If millisecond is not given, it returns zero (0).
<script>// Here a date has been assigned// while creating Date objectvarDateObj =newDate('October 13, 1996 05:35:32');// millisecond from above dateobject is being// extracted using getMilliseconds()varmillisec = DateObj.getMilliseconds();// Printing milliseconddocument.write(millisec);</script>chevron_rightfilter_noneOutput:
0
- Examole 3: If nothing as parameter is given to the Date() constructor, it returns current millisecond.
<script>// Creating a Date ObjectvarDateObj =newDate();// millisecond from above Date object is being// extracted using getMilliSeconds()varmillisec = DateObj.getMilliseconds();// Printing current milliseconddocument.write(millisec);</script>chevron_rightfilter_noneOutput:
279
- Example 4: If millisecond as 1003 is given while creating the Date object, the function will return 0 as exception because milliseconds range is in between 0 to 999 and 1003 is out of this range.
<script>// Here a date has been assigned// while creating Date objectvarDateObj =newDate('October 13, 1996 05:35:32:1003');// millisecond from above dateobject is being// extracted using getMilliseconds()varmillisec = DateObj.getMilliseconds();// Printing milliseconddocument.write(millisec);</script>chevron_rightfilter_noneOutput:
0
Application: It has many applications such as getting current millisecond. Below program shows one of the applications of this function. It gives the current millisecond.
<script> // Creating Date Object var DateObj = new Date(); // millisecond from above Date Obect is // being extracted using getMilliSeconds() var millisec = DateObj.getMilliseconds(); // Printing current millisecond document.write(millisec); </script> |
Output:
79
Supported Browsers: The browsers supported by JavaScript date.getMilliseconds() Function are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- JavaScript | Function Invocation
- JavaScript | String() Function
- JavaScript | Symbol.for() function
- JavaScript | Math.E() function
- JavaScript | toString( ) function
- JavaScript | Array every() function
- JavaScript | Array.of() function
- JavaScript | Function binding
- JavaScript | toPrecision( ) Function
- JavaScript | Array some() function
- What is the inline function in JavaScript ?
- Javascript | Number() Function
- JavaScript | Function Apply
- JavaScript | Function Definitions
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.


