{"ScriptPreparationCode":" var functions = [\r\n () =\u003E Math.random() \u002B 10,\r\n () =\u003E Math.sqrt(Math.random() * 100),\r\n () =\u003E Math.floor(Math.random() * 50),\r\n () =\u003E Math.pow(Math.random(), 2),\r\n];","TestCases":[{"Name":"for...of","Code":"for (const fun of functions) fun();","IsDeferred":false},{"Name":"for (C style)","Code":"for (let i = 0; i\u003Cfunctions.length; i\u002B\u002B) functions[i]();","IsDeferred":false},{"Name":"forEach","Code":"functions.forEach(fun =\u003E fun());","IsDeferred":false}]}