JSで範囲指定のランダムな数値をつくる
こんな感じでいいだろうか
function getRand(from, to) { return from + Math.floor( Math.random() * (to - from + 1) ); } console.log( getRand(0, 10) ); // 0 ~ 10 console.log( getRand(10, 20) ); // 10 ~ 20 console.log( getRand(8, 12)/10 ) // 0.8 ~ 1.2