Ejemplo: obtener la fecha de JavaScript del tiempo transcurrido
var startTime, endTime;
function start() {
startTime = new Date();
};
function end() {
endTime = new Date();
var timeDiff = endTime - startTime; //in ms
// strip the ms
timeDiff /= 1000;
// get seconds
var seconds = Math.round(timeDiff);
console.log(seconds + " seconds");
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)