{"ScriptPreparationCode":"var arr = [null,true,123,\u0027\u0027,{},[]];\r\n","TestCases":[{"Name":"uncached typeof","Code":"for(let n = 0; n \u003C 100; n\u002B\u002B) {\r\n arr.map((i) =\u003E {\r\n if (typeof i !== \u0027XXX\u0027) {\r\n return typeof i;\r\n }\r\n });\r\n}","IsDeferred":false},{"Name":"cached typeof","Code":"for(let n = 0; n \u003C 100; n\u002B\u002B) {\r\n arr.map((i) =\u003E {\r\n const typeOfI = typeof i;\r\n if (typeOfI !== \u0027XXX\u0027) {\r\n return typeOfI;\r\n }\r\n });\r\n}","IsDeferred":false}]}