Javascript保存循环变量的最大值

时间:2015-07-21 07:54:11

标签: javascript android cordova variables

我有一个变量,每2秒更新一次新值(速度),我想保持最高值。 我能怎么做? 剪断

var velocità = spazio / t1;    // km/h
         console.log('Stai andando a: ' + velocità);
         document.getElementById("velocità").innerHTML = velocità;

1 个答案:

答案 0 :(得分:2)

var max = 0;
...
...
if(velocità > max)
    max = velocità;