- 1
- 2
- 3
- 4
- 5
- 6
- 7
function formatSpeedBits(speed) {
// format speed in bits/sec, input: bytes/sec
if (speed < 125000) return Math.round(speed / 125) + " Kbps";
if (speed < 125000000) return Math.round(speed / 1250)/100 + " Mbps";
// else
return Math.round(speed / 1250000)/100 + " Gbps"; // wow!
}
danilissimus 04.03.2011 16:40 # 0
absolut 04.03.2011 16:42 # 0
sectus 04.03.2011 16:48 # +5
danilissimus 04.03.2011 16:55 # 0
Lure Of Chaos 04.03.2011 17:50 # 0
danilissimus 04.03.2011 17:52 # +2
absolut 04.03.2011 17:59 # 0
danilissimus 04.03.2011 18:07 # 0
Lure Of Chaos 04.03.2011 18:08 # 0
ReallyBugMeNot 04.03.2011 21:20 # 0
ReallyBugMeNot 04.03.2011 21:27 # 0
Но к строке, конечно же, приведет. :)
ReallyBugMeNot 04.03.2011 21:30 # 0
danilissimus 04.03.2011 21:37 # +2
Мы о java, а не о javascript говорим.
Fail 04.03.2011 18:17 # 0