In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article introduces the knowledge of "how to create random integers in JavaScript". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!
JavaScript to create a random integer method: 1, use the "Math.random ()" statement to generate random decimals in the range of "0" 1 "; 2, the random decimal multiplied by an integer value, it will be expanded by a specified multiple; 3, the random number will be rounded down with the" Math.floor () "statement, you can get a random integer.
The operating environment of this tutorial: windows7 system, javascript1.8.5 version, Dell G3 computer.
JavaScript has a function that provides a random decimal with a value range of (0,1).
Math.random (); / / 0.10529863457509858
Then we use this function to generate a specified range of random integers.
Function randomRange (min, max) {/ / min minimum, max maximum return Math.floor (Math.random () * (max-min)) + min;}
The principle is to first subtract the maximum value from the minimum worthy of travel (guaranteed not to exceed the maximum value), multiply it with a random decimal, then add the minimum value (make sure it is not less than the minimum value), and finally round it down.
If you use it, pass in the minimum and maximum values you want to specify to the function.
Console.log (randomRange (0, 1000)
Isn't it easy.
This is the end of how to create random integers in JavaScript. Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.