I'm developing a system, where I have to start counting at 1.00 and then go through there a number that will be chosen in the database.
What I want to know is how can I make an increasing count in nodejs, which rises from hundredth to hundredth or 1.01; 1.02 etc ... Until I get the value I want.
However, the higher the number is, the faster it will go up, then it will rise faster and faster.
NOTE: It does not involve thousandths of a second or anything related to time but rather, the larger the number going up the faster it will continue to rise.
How can I do this on nodejs?
Thank you.