Files
30-seconds-of-code/test/round/round.js
2018-08-02 13:49:33 +03:00

3 lines
117 B
JavaScript

const round = (n, decimals = 0) => Number(`${Math.round(`${n}e${decimals}`)}e-${decimals}`);
module.exports = round;