fizzbuzz

by Yubraj Pokharel

JavaScript

for(let i=0;i<100;)
	console.log(
  	(++i%3?'':'fizz')+(i%5?'':'buzz')||i
  )