We are about to switch to a new forum software. Until then we have removed the registration on this forum.
nf(random(3.0, 4.2), 1, 2);
Returns result with comma "," like 3,63.
How to return result with period "." like 3.63.
nf(random(3.0, 4.2), 1, 2).replace(',', '.');
Answers
nf(random(3.0, 4.2), 1, 2).replace(',', '.');