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 trialEmmanuel Idiong
5,953 Pointsvariables
why can't you write the syntax as year = "2015"
2 Answers
Geoff Parsons
11,679 PointsWhen you set a variable to a value contained in quotes it becomes a String. Strings will have different methods than numbers will so you won't be able to perform the same operations. For instance:
>> "100" + "10"
=> "10010"
>> 100 + 10
=> 110
You can however cast a variable from a string to a number with String#to_i and String#to_f. These attempt to convert a string to an integer and floating point number respectively. These are useful for dealing with user input as it will usually come to you as a string even if you were asking the user for a number.
Emmanuel Idiong
5,953 PointsThanks Geoff that was really helpful.