{"ScriptPreparationCode":"window.roundExpo = (val, precision) =\u003E { const m = 10 ** (precision || 0); return Math.round(val * m) / m; }\r\nwindow.round = (val, precision) =\u003E { return Math.round(val * precision) / precision; }","TestCases":[{"Name":"Round Normal","Code":"round(Math.random(), 1000)","IsDeferred":false},{"Name":"Round Expo","Code":"roundExpo(Math.random(), 3)","IsDeferred":false}]}