LoginSignup
2
0

More than 5 years have passed since last update.

FizzBuzzを表示するhtmlファイルのコードゴルフ

Last updated at Posted at 2018-05-20

普通のコードゴルフでは出尽くしてる感あるので、htmlファイルという枠で考えてみた。現実逃避で。

fizzbuzz.html
<body id=b onload="for(i=0;++i<101;)b.innerHTML+='<p>'+((i%3?'':'fizz')+(i%5?'':'buzz')||i)">

【追記】普通にdocument.writeの方が文字数少なかった。。。

fizzbuzz.html
<script>for(i=0;++i<101;)document.write(((i%3?'':'fizz')+(i%5?'':'buzz')||i)+'<br>')</script>
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0