Random number from an interval
Tue Sep 01 2020 09:51:10 GMT+0000 (UTC)
Saved by
@KennethSangill
function ()
{
var min = 1; //edit the minimum possible value
var max = 5; //edit the maximum possible value
return Math.floor(Math.random()*(max-min+1)+min);
}
content_copyCOPY
Comments