Generário nmeros aleatorios en javascript entre un mnimo y un mimo
random(min, max) {
return Math.floor((Math.random() * (max - min + 1)) + min);
}
Brainy Beaver
random(min, max) {
return Math.floor((Math.random() * (max - min + 1)) + min);
}