function round(number, precision = 0) { let factor = Math.pow(10, precision) return Math.round(number * factor) / factor } round( 1 / 3, 3 )
Eval