{"ScriptPreparationCode":"var data = [...Array(10000)].map((_, i) =\u003E [i, i]);\r\nvar cachedArray = [\u0027a\u0027, \u0027b\u0027, \u0027c\u0027, \u0027d\u0027, \u0027e\u0027, \u0027f\u0027];\r\nvar g = \u0027g\u0027;","TestCases":[{"Name":"Array.includes","Code":"data.forEach(() =\u003E {\r\n return [\u0027a\u0027, \u0027b\u0027, \u0027c\u0027, \u0027d\u0027, \u0027e\u0027, \u0027f\u0027].includes(g);\r\n});","IsDeferred":false},{"Name":"Array.includes (cached array)","Code":"data.forEach(() =\u003E {\r\n return cachedArray.includes(g);\r\n});","IsDeferred":false},{"Name":"OR operator","Code":"data.forEach(() =\u003E {\r\n return \u0027a\u0027 === g || \u0027b\u0027 === g || \u0027c\u0027 === g || \u0027d\u0027 === g || \u0027e\u0027 === g || \u0027f\u0027 === g;\r\n});","IsDeferred":false}]}