programming-examples/js/Math/Generate a random integer.js

14 lines
341 B
JavaScript
Raw Normal View History

2019-11-15 12:59:38 +01:00
rand = function(min, max) {
if (min==null && max==null)
return 0;
if (max == null) {
max = min;
min = 0;
}
return min + Math.floor(Math.random() * (max - min + 1));
};
console.log(rand(20,1));
console.log(rand(1,10));
console.log(rand(6));
console.log(rand());