Descrição
o getMilliseconds ()método retorna os milissegundos na data especificada de acordo com a hora local. O valor retornado por getMilliseconds () é um número entre 0 e 999.
Sintaxe
Dada a seguir é a sintaxe de getMilliseconds() método.
Date. getMilliseconds()
Exemplo
O exemplo a seguir demonstra o uso do getMilliseconds()método em CoffeeScript. Salve este código em um arquivo com o nomedate_getmilliseconds.coffee.
dt = new Date "February 19, 2016 23:15:25:22"
console.log "The value of the milliseconds in the specified date is : " + dt.getMilliseconds()
Abra o command prompt e compilar o arquivo .coffee conforme mostrado abaixo.
c:\> coffee -c date_getmilliseconds.coffee
Na compilação, ele fornece o seguinte JavaScript.
// Generated by CoffeeScript 1.10.0
(function() {
var dt;
dt = new Date("February 19, 2016 23:15:25:22");
console.log("The value of the milliseconds in the specified date is : " + dt.getMilliseconds());
}).call(this);
Agora, abra o command prompt novamente e execute o arquivo CoffeeScript conforme mostrado abaixo.
c:\> coffee date_getmilliseconds.coffee
Ao ser executado, o arquivo CoffeeScript produz a seguinte saída.
The value of the milliseconds in the specified date is : 22