Descrição
Data Javascript setTime()método define o objeto Date com a hora representada por um número de milissegundos desde 1 de janeiro de 1970, 00:00:00 UTC.
Sintaxe
Sua sintaxe é a seguinte -
Date.setTime(timeValue)
Note - Os parâmetros entre colchetes são sempre opcionais.
Parameter Detail
timeValue − An integer representing the number of milliseconds since 1 January 1970, 00:00:00 UTC.
Example
Try the following example.
<html>
<head>
<title>JavaScript setTime Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = new Date( "Aug 28, 2008 23:30:00" );
dt.setTime( 5000000 );
document.write( dt );
</script>
</body>
</html>
Output
Thu Jan 01 1970 06:53:20 GMT+0530 (India Standard Time)