{"ScriptPreparationCode":"const ARRAY = [{ key: \u0027a\u0027, foo: \u0027bar\u0027 }, { key: \u0027b\u0027, foo: \u0027bar\u0027 }, { key: \u0027c\u0027, foo: \u0027bar\u0027 }, { key: \u0027d\u0027, foo: \u0027bar\u0027 }];\r\nconst OBJECT = {\u0027a\u0027: { foo: \u0027bar\u0027 }, \u0027b\u0027: { foo: \u0027bar\u0027 }, \u0027c\u0027: { foo: \u0027bar\u0027 }, \u0027d\u0027: { foo: \u0027bar\u0027 }};","TestCases":[{"Name":"for(const item of array)","Code":"for(const item of ARRAY) { const test = true; }","IsDeferred":false},{"Name":"for(const [k, v] of Object.entries(object))","Code":"for(const [k, v] of Object.entries(OBJECT)) { const test = true; }","IsDeferred":false}]}