JavaScript | date.setUTCMinutes() function
The date.setUTCMinutes() is an inbuilt function in JavaScript which is used to set minutes according to universal time into a date object which is created using the Date() constructor.
Syntax:
DateObj.setUTCMinutes(Minutes_Value);
DateObj is a valid Date object created using Date() constructor in which we want to set the minute. Value of minute is from 0 to 59.
Parameter: Here parameter minutes_Value is the value of minutes which we want to set in the date created using the Date() constructor.
Return Values: It returns the new i.e updated minute which is set by setUTCMinutes() function.
Below program illustrate the setUTCMinutes() function:
// 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 minute of 52 is being set in above Date // Object with the help of setUTCMinutes() function dateobj.setUTCMinutes(52); // new minute from above Date Object is // being extracted using getUTCMinutes() var B = dateobj.getUTCMinutes(); // Printing new minute console.log(B); |
Output:
> 52
Errors and Exceptions
- Code #1: If in Date() constructor we do not give any minute while creating the Date object, still setUTCMinutes() function will be able to set new minute according to universal time in the created Date object.
// Here minute has not been assigned according to// universal time while creating Date objectvardateobj =newDate('October 13, 1996 GMT-3:00');// new minute of 51 is being set in above Date// Object with the help of setUTCMinutes() functiondateobj.setUTCMinutes(51);// new minute from above Date Object is// being extracted using getUTCMinutes()varB = dateobj.getUTCMinutes();// Printing new minuteconsole.log(B);chevron_rightfilter_noneOutput:
> 51
- Code #2: If nothing as parameter is given in Date() constructor, still setUTCMinutes() function will be able set minute but month, year, date etc remains current ones.
// Here nothing has been assigned according to// universal time while creating Date objectvardateobj =newDate();// new minute of 42 is being set in above Date// Object with the help of setUTCMinutes() functiondateobj.setUTCMinutes(42);// Minutes from above Date Object is// being extracted using getUTCMinutes()varB = dateobj.getUTCMinutes();// 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 minutesconsole.log(B);// Printing current monthconsole.log(C);// Printing current dateconsole.log(D);// Printing current yearconsole.log(E);chevron_rightfilter_noneOutput:
> 42 > 3 > 1 > 2018
Here 42 is the new minutes, 3 is the current month i.e April, 1 is the current date and 2018 is the current year.
- Code #3: If value of minute as 66 is given as the parameter of setUTCMinutes() function, it will set 6 as the minute because minute range is form 0 to 59 and hence
, here 60 is substracted because 0 to 59 is 60.
// Here date has been assigned according to// universal time while creating Date objectvardateobj =newDate('October 13, 1996 05:35:32 GMT-3:00');// new minute of 66 is being set in above Date// Object with the help of setUTCMinutes() functiondateobj.setUTCMinutes(66);// minute from above Date Object is// being extracted using getUTCMinutes()varB = dateobj.getUTCMinutes();// Hour from above Date Object is// being extracted using getUTCHours()varC = dateobj.getUTCHours();// Printing new minuteconsole.log(B);// Printing hourconsole.log(C);chevron_rightfilter_noneOutput:
> 6 > 6
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- JavaScript | Function Parameters
- JavaScript | Function Definitions
- JavaScript | toString( ) function
- JavaScript | Math.pow( ) Function
- JavaScript | Array every() function
- JavaScript | String() Function
- JavaScript | Function Apply
- JavaScript | Function Call
- Javascript | Number() Function
- JavaScript | Math.E() function
- JavaScript | Array some() function
- JavaScript | toFixed( ) Function
- JavaScript | Array.of() function
- JavaScript | Math.abs( ) function
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.



