Random Number Generator

function randomIntFromInterval(min,max) { return Math.floor(Math.random()*(max-min+1)+min); }
Random number generator. What it does "extra" is it allows random intervals that do not start with 1. So you can get a random number from 10 to 15 for example.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.