{"ScriptPreparationCode":"const large = 11294810293810000;\r\nconst smaller = large / 60000;\r\n\r\nfunction millisToMins(millis) {\r\n return millis / 60000;\r\n}\r\n\r\nfunction doesNothing(input) {\r\n return input;\r\n}","TestCases":[{"Name":"working with millis then converting","Code":"millisToMins(large / 12131 * 1237) ","IsDeferred":false},{"Name":"working with minutes directly","Code":"smaller / 12131 * 1237","IsDeferred":false},{"Name":"working with minutes directly (with a wrapped function call to see if that causes slowness)","Code":"doesNothing(smaller / 12131 * 1237)","IsDeferred":false},{"Name":"more wrapping to see performance impact","Code":"doesNothing(doesNothing(doesNothing(doesNothing(doesNothing(smaller / 12131 * 1237)))))","IsDeferred":false}]}