blob: 6352a62b073e2fc2bcad59413dcd70578e33d988 [file] [log] [blame]
avm9996345a8a462022-06-04 12:41:03 +02001let b = 1.4
2let s = ""
3while (b <= 3.4) {
4 s += b.toPrecision(2) + " ";
5 b += 0.1
6}
7s += b.toPrecision(2) + " ";
8console.log(s)