I am trying to round a number in JavaScript to match the following Excel style rounding.
Excel:
=ROUND(123456,-1)
which outputs
123460
How can I get JavaScript to round to negative decimal places?
I am trying to round a number in JavaScript to match the following Excel style rounding.
Excel:
=ROUND(123456,-1)
which outputs
123460
How can I get JavaScript to round to negative decimal places?
function round(x, places)
{
var shift = Math.pow(10, places);
return Math.round(x * shift) / shift;
}
Formula.js implements all Math functions offered by Microsoft Excel 2013, including ROUND.