I have the code of a stopwatch and I would like your help to implement a calculation, I will try to explain it as well as possible.
Stopwatchcode:
var segundo = 0 + "0";
var minuto = 0 + "0";
var hora = 0 + "0";
function tempo() {
if (segundo < 59) {
segundo++
if (segundo < 10) {
segundo = "0" + segundo
}
} else
if (segundo == 59 && minuto < 59) {
segundo = 0 + "0";
minuto++;
if (minuto < 10) {
minuto = "0" + minuto
}
}
if (minuto == 59 && segundo == 59 && hora < 23) {
segundo = 0 + "0";
minuto = 0 + "0";
hora++;
if (hora < 10) {
hora = "0" + hora
}
} else
if (minuto == 59 && segundo == 59 && hora == 23) {
segundo = 0 + "0";
minuto = 0 + "0";
hora = 0 + "0";
}
form.cronometro.value = hora + ":" + minuto + ":" + segundo
}
<html>
<body>
<form name="form">
<input type="text" name="cronometro" value="00:00:00" readonly="readonly" />
<br />
<button type="button" onclick="setInterval('tempo()',983);return false;">Iniciar Cronômetro</button>
</form>
</body>
</html>