Javascript code to generate a random number within a specified range _ javascript skills

Source: Internet
Author: User
I found out after checking the manual that the information I introduced was poor. I didn't introduce the generation of random numbers in the m-n range ..., just give you a Math. random. however, after a small effort, I finally touched the door and solved the problem.
Then, a formula is written, which should disappear. formula:
1. Starting from 1 to any value
Linenum
ParseInt (Math. random () * Upper Limit + 1 );
2. From any value to any value
Linenum
ParseInt (Math. random () * (upper limit-lower limit + 1) + lower limit );
The above formula uses parseInt (), so we need to add 1; if we use Math. ceil (), we do not need to add 1. I am used to writing this...
Directory:
1. Demo 1 (directly generate a random number)
2. DEMO 2 (write as a function to generate a random number)
1. Demo 1 (directly generate a random number)
Linenum
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.