summaryrefslogtreecommitdiff
path: root/js/util.js
blob: 5828a914a22ee6bbd818313a3ebc85d7f9a63597 (plain)
1
2
3
4
5
function avg(a,b,n){ return (a*(n-1) + b)/n; }
function rand(n) { return ~~(Math.random()*n); }
function randrange(a,b){ return (b-a)+rand(a); }
function choice(a) { return a[rand(a.length)]; }