setMinutes()

We can set the minutes part of the date object by using setMinutes function. By using this we can set the minute from 0 to 59. Let us try to set the minutes to 20 of a date object. Here is the example
<script type="text/javascript"> 
var dt= new Date();
document.write( dt + "<br><br>");
dt.setMinutes(15);
document.write( "<br><br>" + dt );
</script>
Here is the output based on your time zone and date and time of your computer

Setting minutes to a negative value

What happens if we set the minutes value to -75? Here is the sample code , just change the line in above code to
dt.setMinutes(-75);
The output of this change is here.


Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com




    Post your comments , suggestion , error , requirements etc here .




    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer