Edits history of script submission #101 for ' Random Integer (helper)'

  • deno
    export async function main(min = 0, max = 100) {
      return Math.floor(Math.random() * (max - min + 1)) + min;
    }
    

    Submitted by hugo697 398 days ago

  • deno
    export async function main(min = 0, max = 100) {
      return Math.floor(Math.random() * (max - min + 1)) + min;
    }
    

    Submitted by admin 1031 days ago

  • deno
    export async function main(min = 0, max = 100) {
    	return Math.floor(Math.random() * (max - min + 1)) + min;
    }

    Submitted by jaller94 1398 days ago