Comment on Solving Fizz Buzz with CosinesComments−econ9moMade me envision this terrible idea.arr = [];y = 0;setInterval(()=>{arr[y]=x},10)setInterval(()=>{x=y++},1000)setInterval(()=>{x="fizz"},3000)setInterval(()=>{x="buzz"},5000)setInterval(()=>{x="fizzbuzz"},15000)−seattle_spring9moThat is beautifully heinous! Nice work.
Comments
Made me envision this terrible idea.
arr = [];
y = 0;
setInterval(()=>{arr[y]=x},10)
setInterval(()=>{x=y++},1000)
setInterval(()=>{x="fizz"},3000)
setInterval(()=>{x="buzz"},5000)
setInterval(()=>{x="fizzbuzz"},15000)
That is beautifully heinous! Nice work.