Given a string object like this: twohundred = "200"
What is the difference between doing:
Integer(twohundred)
and
twohundred.to_i
Is there any difference? Is it recommended to use one among the other one?
|
Given a string object like this: What is the difference between doing:
and
Is there any difference? Is it recommended to use one among the other one? |
||||
|
|
|
For example:
|
||||
|
|
|
From the Ruby documentation for
In other words, |
|||
|
|