{"ScriptPreparationCode":null,"TestCases":[{"Name":"For loop","Code":"const orderTracking = {};\r\nconst styleSet = [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20];\r\nfor (const style of styleSet) {\r\n orderTracking[style] = {};\r\n for (let j = 1; j \u003C= 9; j\u002B\u002B) {\r\n orderTracking[style][j] = 1;\r\n }\r\n}","IsDeferred":false},{"Name":"Clone","Code":"const orderTracking = {};\r\nconst styleSet = [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20];\r\nconst seed = {\r\n 1: 1,\r\n 2: 1,\r\n 3: 1,\r\n 4: 1,\r\n 5: 1,\r\n 6: 1,\r\n 7: 1,\r\n 8: 1,\r\n 9: 1\r\n}\r\n\r\nfor (const style of styleSet) {\r\n orderTracking[style] = Object.assign({}, seed);;\r\n}","IsDeferred":false}]}