Untitled
3 years ago in Plain Text
function getRandomArbitrary(min, max) {
return Math.random() * (max - min) + min;
}
1
2
3