Node.js examples for Math:Round
Fix rounding error of float numbers
/**/*w w w . j av a 2 s . c o m*/ * Fix rounding error of float numbers * @param {number} x * @return {number} */ number.round = function (x) { // PENDING return +(+x).toFixed(10); };