Showing posts with label Programmin. Show all posts
Showing posts with label Programmin. Show all posts

Thursday, 12 January 2012

Javascript

function randomRange(min,max){
  return Math.random()*(max-min) + min;
}