Back form the crash, sort of.
Going to be a while rebuilding everything.
But in the meantime, have some pointless code:
1 2 3 4 |
for (x=1; x<=100; x++) { var y = (x%3 ? '' : 'fizz') + (x%5 ? '' : 'buzz'); document.writeln((y.length ? y : x) + '<br />'); } |
My work here is done. You can all go home now.