Showing posts with label numbers. Show all posts
Showing posts with label numbers. Show all posts

Saturday 28 June 2014

JS get random Numbers

function getRandom(length) {
 var rand = Math.floor(Math.pow(10, length-1) + Math.random() * 9 * Math.pow(10, length-1));
 return rand;
}