v1
- by annoyingmouse 3/25/202200
Setup HTML - click to add setup HTML
Setup JS - click to add setup JavaScript
delete caserun single casemove downdrag and drop case


ready



for(let i=0;i<1000;)console.log((++i%3?'':'fizz')+(i%5?'':'buzz')||i)
delete caserun single casemove updrag and drop case


ready



Array.from({length: 1000}, (_, i) => i + 1).forEach(i => {
  console.log((i%3 && i%5) ? `${i}` : `${i} ${(i%3 ? '' :  'Fizz') + (i%5 ? '' : 'Buzz')}`)
})
Test Case - click to add another test case
Teardown JS - click to add teardown JavaScript
Output (DOM) - click to monitor output (DOM) while test is running
RUN