Date.setUTCMilliseconds() : setUTCMilliseconds : Date JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Date » setUTCMilliseconds »

 

Date.setUTCMilliseconds()










Syntax








date.setUTCMilliseconds(milliseconds)



The setUTCMilliseconds() method sets the milliseconds in the Date object to the argument milliseconds, an integer from 0 to 999 universal time.

The method returns an integer representing the number of milliseconds between midnight January 1, 1970 (GMT) to the new date.












<html>
    <script language="JavaScript">
    <!--
    theDate = new Date();

    document.write("Initial milliseconds=",theDate.getTime());
    document.write("<br>setUTCMilliseconds returned ");
    document.write(theDate.setUTCMilliseconds(258)," milliseconds.")
    document.write("<br>Final milliseconds=",theDate.getTime());
    -->
    </script>
    </html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Date
» setUTCMilliseconds