perfettiful
4/5/2018 - 12:12 AM

Generate Random Int Fct

Generate Random Int Fct

    //Random Number between Min and Max
    function getRandomInt(min, max) {
      return Math.floor(Math.random() * (max - min + 1)) + min;