Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Pega tempo
- function getTime(){
- var horaInicio = new Date();
- var minutos = horaInicio.getMinutes();
- var segundos = horaInicio.getSeconds();
- var milisegundos = horaInicio.getMilliseconds();
- var arrTempo = [minutos, segundos, milisegundos];
- var tempo = arrTempo.join();
- return tempo;
- }
- // calcula tempo de execução
- function tempoExecucao(tempoInicio, tempoFim){
- var tempoInicioCalc = tempoInicio.split(",");
- var tempoFinalCalc = tempoFim.split(",");
- // calculo do tempo
- var calcMinuto = tempoFinalCalc[0]-tempoInicioCalc[0];
- var calcSegundo = tempoFinalCalc[1]-tempoInicioCalc[1];
- var calcMilisegundos = tempoFinalCalc[2]-tempoInicioCalc[2];
- // une em uma array
- var tempoCalc = [calcMinuto, calcSegundo, calcMilisegundos];
- // une em uma string
- tempoCalc.join();
- return tempoCalc;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement