{"ScriptPreparationCode":"var x = 5.236;","TestCases":[{"Name":"Multiply using Decimal.js","Code":"for (var i = 0; i \u003C 1000; i\u002B\u002B) {\r\n Decimal(\u00270.00253452345\u0027).times(Decimal(\u00270.042234\u0027))\r\n}","IsDeferred":false},{"Name":"Multiply using native numbers with Math.pow","Code":" let \r\n \tprecision = 10,\r\n \tfactor = Math.pow(10, precision),\r\n first = 0.00253452345,\r\n sec = 0.042234;\r\n\r\nfor (var i = 0; i \u003C 1000; i\u002B\u002B) {\r\n (Math.round(first * factor) * Math.round(sec * factor)) / (factor * factor)\r\n}\r\n\r\n","IsDeferred":false}]}