Answers for "method to display random values in ruby on rails"

6

ruby generate random number

rand()#that will give you a random float between 0 and 10

rand(num)#that will give you a random integer between 0 and the number num

rand(first...second)#that will give you a random
#integer between first and second
Posted by: Guest on March-05-2021
0

random number rails

Use rand(range)

From Ruby Random Numbers:

If you needed a random integer to simulate a roll of a six-sided die, you'd use: 1 + rand(6). A roll in craps could be simulated with 2 + rand(6) + rand(6).

Finally, if you just need a random float, just call rand with no arguments.
Posted by: Guest on September-03-2021

Browse Popular Code Answers by Language