{"ScriptPreparationCode":"var number = 12324242/432432432;\r\nvar result;\r\n\r\nfunction round(value, decimals) {\r\n value = value * Math.pow(10, decimals);\r\n value = Math.round(value);\r\n value = value / Math.pow(10, decimals);\r\n return value;\r\n}\r\n\r\nfunction MathRound(number) {\r\n return Math.round((100 - (number) * 100) * 100) / 100;\r\n}\r\n","TestCases":[{"Name":"toFixed","Code":"result = \u002B(number.toFixed(2));","IsDeferred":false},{"Name":"Math.round","Code":"result = Math.round((100 - (number) * 100) * 100) / 100;","IsDeferred":false},{"Name":"Round function with correction","Code":"result = round(number, 2);","IsDeferred":false},{"Name":"Math.roundv2","Code":"result = MathRound(number);","IsDeferred":false}]}