我有一个变量,每2秒更新一次新值(速度),我想保持最高值。 我能怎么做? 剪断
var velocità = spazio / t1; // km/h
console.log('Stai andando a: ' + velocità);
document.getElementById("velocità").innerHTML = velocità;
答案 0 :(得分:2)
var max = 0;
...
...
if(velocità > max)
max = velocità;