fork download
  1. // your code goes here
  2. function rand(max,min)
  3. {return Math.floor(Math.random()*(max-min)+min)};
  4. let result=rand(10,0);
  5. console.log(result);
Success #stdin #stdout 0.03s 16688KB
stdin
Standard input is empty
stdout
6