Files
30-seconds-of-code/test/round/round.js
2018-01-17 13:40:40 -05:00

2 lines
116 B
JavaScript

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