Files
30-seconds-of-code/test/round/round.js

1 line
103 B
JavaScript

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