You are here: Home Blog Comments 100 までの素数を列挙 in JavaScript

Personal tools

100 までの素数を列挙 in JavaScript

Posted by Days on the Moon at 2006-06-17 16:40
「キミならどう書く 2.0 - ROUND 1 - ― Lightweight Language Ring」より。せっかくなので JavaScript 1.7 の新機能である Generator を使って書いてみる。 function countUp(n) { n = n || 0; while (true) yield
Parent entry キミならどう書く 2.0 - ROUND 1 -