chrisj
1/10/2019 - 3:29 AM

Random Whole Number Function

// Random Whole Number 
function randomWholeNumber(min, max){
  return Math.floor(Math.random() * (1 + max - min) + min);
}