【Javascript】ランダムな整数を生成する。

戒メモシリーズ。

Javascriptの超基本。教科書の1ページ目レベル。いい加減覚えろ俺。

// 0~99
var num = Math.floor(Math.random()*100);

// 0~50
var num = Math.floor(Math.random()*51);

// 50~70
var num = 50 + Math.floor(Math.random()*21);