Home > Web Front-end > JS Tutorial > body text

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

WBOY
Release: 2016-05-16 16:49:21
Original
1783 people have browsed it
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
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!