{"ScriptPreparationCode":"var limit = 10;\r\nvar total = 0;","TestCases":[{"Name":"Finite - Test all numbers within limit","Code":"for (var i = 0; i \u003C limit; i\u002B\u002B) {\r\n if (i % 3 === 0 || i % 5 == 0) {\r\n total \u002B= i;\r\n }\r\n}\r\nconsole.log(total);","IsDeferred":false},{"Name":"Multiples Only","Code":"console.log(total);","IsDeferred":false}]}