{"ScriptPreparationCode":"var arr = [...Array(1000).keys()]","TestCases":[{"Name":"for of","Code":"let z = [];\r\nfor (let num of arr) {\r\n if(num % 3 || num % 5) {\r\n\t\tz.push(num);\r\n }\r\n}","IsDeferred":false},{"Name":"for loop","Code":"let z = [];\r\nfor (let x = 0; x \u003C arr.length; x\u002B\u002B) {\r\n if(arr[x] % 3 || arr[x] % 5) {\r\n\t\tz.push(arr[x]);\r\n }\r\n}","IsDeferred":false}]}