{"ScriptPreparationCode":"var fooSet = new Set();\r\nfor(var i=0;i\u003C100;i\u002B\u002B) {\r\n fooSet.add(i);\r\n}","TestCases":[{"Name":"A","Code":"var other = Array.from(fooSet);","IsDeferred":false},{"Name":"B","Code":"var other = [...fooSet];","IsDeferred":false},{"Name":"C","Code":"var other = [];\r\nconst length = fooSet.length;\r\nfor(var i=0;i\u003Clength;i\u002B\u002B) {\r\n other[i] = fooSet[i];\r\n}","IsDeferred":false},{"Name":"D","Code":"const other = Array(fooSet.length), len = other.length;\r\nfor(let i=0; i \u003C len; i\u002B\u002B) {\r\n other[i] = fooSet[i];\r\n}","IsDeferred":false}]}