Check out example codes for "how to repeat a string n times in ruby". It will help you in understanding the concepts better.
Code Example 1
30.times {
# do something
}
# or, the equivalent
30.times do
# do something
end
Learn ReactJs, React Native from akashmittal.com