Home  >  Article  >  Web Front-end  >  JS obtains random number function and can customize the minimum and maximum values ​​_javascript skills

JS obtains random number function and can customize the minimum and maximum values ​​_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:49:211775browse
Copy code The code is as follows:

/**
* lowerValue minimum value
* upperValue maximum value
*/
function selectFrom(lowerValue , upperValue){

//Total number of value ranges
var choices = upperValue - lowerValue 1;
return Math.floor(Math.random() * choices lowerValue);
}
var num = selectFrom(2, 10);
alert(num);//A value between 2 and 10 (inclusive)

var colors = ["red ","green","blue","yellow","black","brown"];
var color = colors[selectFrom(0, colors.length-1)];
alert(color) ;//May be any value contained in the array
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn