Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRhonda Goolsby
6,992 Pointsstring to integer
string = "123" puts string.to_i
string = "123"
# YOUR CODE HERE
def string("123")
string.to_i
end
Rhonda Goolsby
6,992 PointsThanks Grigorij,
So close. Thank you.
1 Answer
Clayton Perszyk
Treehouse Moderator 48,850 PointsHI Rhonda,
If you're trying to pass the challenge, you don't need to define a method. You need to use methods built into ruby, to_i and to_f, to convert the string. Then assign the return values to two different variables, integer and float.
structure:
variable = string.method
Grigorij Schleifer
10,365 PointsGrigorij Schleifer
10,365 PointsHey Ronda, I have no experience with Ruby but this answer seems to explain it very well.