JavaScript | date.setUTCMilliseconds() function
The date.setUTCMilliseconds() is an inbuilt function in JavaScript which is used to set milliseconds according to universal time into a date object which is created using Date() constructor.
Syntax:
DateObj.setUTCMilliseconds(milliseconds_Value);
DateObj is a valid Date object created using Date() constructor in which we want to set the millisecond according to universal time. Value of millisecond is from 0 to 999.
Parameter: Here parameter is milliseconds_Value is the value of millisecond which is used to set in Date() constructor.
Return Values: It returns the new i.e updated millisecond which is set by setUTCMilliseconds() function.
Below programs illustrate the setUTCMilliseconds() function:
<script> // Here a date has been assigned according to // universal time while creating Date object var dateobj = new Date('October 13, 1996 05:35:32:77 GMT-3:00'); // new millisecond of 52 is being set in above Date // Object with the help of setUTCMilliseconds() function dateobj.setUTCMilliseconds(52); // new millisecond from above Date Object is // being extracted using getUTCMilliseconds() var B = dateobj.getUTCMilliseconds(); // Printing new millisecond document.write(B); </script> |
Output:
52
Errors and Exceptions
<script> // Here millisecond has not been assigned according to // universal time while creating Date object var dateobj = new Date('October 13, 1996 GMT-3:00'); // new millisecond of 51 is being set in above Date // Object with the help of setUTCMilliseconds() function dateobj.setUTCMilliseconds(51); // new millisecond from above Date Object is // being extracted using getUTCMilliseconds() var B = dateobj.getUTCMilliseconds(); // Printing new millisecond document.write(B); </script> |
Output:
51
<script> // Here nothing has been assigned according to // universal time while creating Date object var dateobj = new Date(); // new millisecond of 42 is being set in above Date // Object with the help of setUTCMilliseconds() function dateobj.setUTCMilliseconds(42); // milliseconds from above Date Object is // being extracted using getUTCMilliseconds() var B = dateobj.getUTCMilliseconds(); // month from above Date Object is // being extracted using getUTCMonth() var C = dateobj.getUTCMonth(); // date from above Date Object is // being extracted using getDate() var D = dateobj.getUTCDate(); // year from above Date Object is // being extracted using getUTCFullYear() var E = dateobj.getUTCFullYear(); // Printing new milliseconds document.write(B + "<br>"); // Printing current month document.write(C + "<br>"); // Printing current date document.write(D + "<br>"); // Printing current year document.write(E); </script> |
Output:
42 3 1 2018
Here 42 is the new milliseconds, 3 is the current month i.e April, 1 is the current date and 2018 is the current year according to universal time.
<script> // Here date has been assigned according to // universal time while creating Date object var dateobj = new Date('October 13, 1996 05:35:32:45 GMT-3:00'); // new millisecond of 1006 is being set in above Date // Object with the help of setUTCMilliseconds() function dateobj.setUTCMilliseconds(1006); // milliseconds from above Date Object is // being extracted using getUTCMilliseconds() var B = dateobj.getUTCMilliseconds(); // Second from above Date Object is // being extracted using getUTCSeconds() var C = dateobj.getUTCSeconds(); // Printing new Milliseconds document.write(B + "<br>"); // Printing second document.write(C); </script> |
Output:
6 33
Supported Browsers: The browsers supported by JavaScript date.setUTCMilliseconds() 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.


