JavaScript | date.setUTCSeconds() function
The date.setUTCSeconds() is an inbuilt function in JavaScript which is used to set seconds according to universal time into a date object which is created using Date() constructor.
Syntax:
DateObj.setUTCSeconds(seconds_Value);
DateObj is a valid Date object created using Date() constructor in which we want to set the second.Value of second is from 0 to 59.
Parameter: Here parameter seconds_Value is the value of second which we want to set in the date created using the Date() constructor.
Return Values: It returns the new i.e updated second which is set by setUTCSeconds() function.
Below program illustrate the setUTCSeconds() 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 GMT-3:00'); // new second of 52 is being set in above Date // Object with the help of setUTCSeconds() function dateobj.setUTCSeconds(52); // new second from above Date Object is // being extracted using getUTCSeconds() var B = dateobj.getUTCSeconds(); // Printing new Second document.write(B); </script> |
Output:
52
Errors and Exceptions
- Example 1: If in Date() constructor we do not give any second while creating the Date object, still setUTCSeconds() function will be able to set new second which is given as its parameter according to universal time in the created Date object.
<script>// Here second has not been assigned according to// universal time while creating Date objectvardateobj =newDate('October 13, 1996 GMT-3:00');// new second of 51 is being set in above Date// Object with the help of setUTCSeconds() functiondateobj.setUTCSeconds(51);// new second from above Date Object is// being extracted using getUTCSeconds()varB = dateobj.getUTCSeconds();// Printing new Seconddocument.write(B);</script>chevron_rightfilter_noneOutput:
51
- Example 2: If nothing as parameter is given in Date() constructor, still setUTCSeconds() function will be able to set second but month, year, date etc remains current ones.
<script>// Here nothing has been assigned// while creating Date objectvardateobj =newDate();// new second of 42 is being set in above Date// Object with the help of setUTCSeconds() functiondateobj.setUTCSeconds(42);// Seconds from above Date Object is// being extracted using getUTCSeconds()varB = dateobj.getUTCSeconds();// month from above Date Object is// being extracted using getUTCMonth()varC = dateobj.getUTCMonth();// date from above Date Object is// being extracted using getUTCDate()varD = dateobj.getUTCDate();// year from above Date Object is// being extracted using getUTCFullYear()varE = dateobj.getUTCFullYear();// Printing new secondsdocument.write(B +"<br>");// Printing current monthdocument.write(C +"<br>");// Printing current datedocument.write(D +"<br>");// Printing current yeardocument.write(E);</script>chevron_rightfilter_noneOutput:
42 3 1 2018
Here 42 is the new seconds, 3 is the current month i.e April, 1 is the current date and 2018 is the current year according to universal time.
- Example 3: If value of second 66 is given as the parameter of setSeconds() function, It will set 6 as the second because second range is form 0 to 59 and hence
, here 60 is substracted because 0 to 59 is 60.
<script>// Here date has been assigned according to// universal time while creating Date objectvardateobj =newDate('October 13, 1996 05:35:32 GMT-3:00');// new second of 66 is being set in above Date// Object with the help of setUTCSeconds() functiondateobj.setUTCSeconds(66);// seconds from above Date Object is// being extracted using getUTCSeconds()varB = dateobj.getUTCSeconds();// Minute from above Date Object is// being extracted using getUTCMinutes()varC = dateobj.getUTCMinutes();// Printing new secondsdocument.write(B +"<br>");// Printing minutesdocument.write(C);</script>chevron_rightfilter_noneOutput:
6 36
Supported Browsers: The browsers supported by JavaScript date.setUTCSeconds() 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 | toPrecision( ) Function
- JavaScript | Array every() function
- JavaScript | Symbol.for() function
- JavaScript | Math.abs( ) function
- JavaScript | String() Function
- JavaScript | toFixed( ) Function
- JavaScript | Function Definitions
- JavaScript | toString( ) function
- JavaScript | Function Invocation
- JavaScript | Array some() function
- JavaScript | Math.E() function
- JavaScript | Array.of() function
- JavaScript | Function Parameters
- JavaScript | Function Apply
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.



