Random integer generation with range of JavaScript

Source: Internet
Author: User

// generates an integer random number with a range of [Min,max] function Randomint (Min,max) {    if(min < 0 | | Max <0) {        throw "does not support negative numbers";    }         var number = parseint (Math.random (). toString (). substring (2));     return number% (max-min) + min;}
//generates a count of non-repeating random numbers, and the range is [Scope_min,scope_max]functionRandomintnorepeat (Count,scope_min,scope_max) {varNumbers = []; if(Scope_max-scope_min < count) {//The range is not correct        Throw"The range is incorrect"; }     for(vari = 0; I < Count;i + +){        varNumber =Randomint (Scope_min,scope_max);  while(numbers.includes (number)) { number=Randomint (Scope_min,scope_max);    } numbers.push (number); }    returnnumbers;}

Random integer generation with range of JavaScript

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.