blob: 035b98c57edb6b95d4b87a8d9a45bf3a4031515c [file] [log] [blame]
avm9996345a8a462022-06-04 12:41:03 +02001let b = 2.1
2let s = ""
3while (b <= 2.4) {
4 s += b.toPrecision(3) + " ";
5 b += 0.02
6}
7s += b.toPrecision(3) + " ";
8console.log(s)