Guest User

Untitled

a guest
Oct 19th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. const random = ( min = 0, max = 10 ) => Math.floor( Math.random() * ( max - min ) + min )
  2.  
  3. console.log(random())
  4. console.log(random( -10, 10 ))
  5. console.log(random( 50, 250 ))
Add Comment
Please, Sign In to add comment