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 trialSY LOC
3,233 PointsUsing the respond_to? method, ask the string variable if it responds to the upcase method. Remember, the respond_to?
I'm not getting a good grasp of the method yet. It's getting confuse for me. 'apple, peach, pineapple' would be my argument. I don't know at the moment.
string = String.new(apple, peach, pineapple) string.respond_to?("upcase")
string = String.new[apple, peach, pineapple]
string.respond_to?("upcase")
1 Answer
Joe Dayvie
11,956 PointsSy,
I am not entirely sure of your intention, but the arguments you show in your code has brackets and not parenthesis. Keep the code simple and if you just use something similar to string = String.new("My string example"), it should work well.
Joe
SY LOC
3,233 PointsSY LOC
3,233 PointsI figured it out. Thanks! I overthinking the question.