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 trialnathanielcusano
9,808 PointsHow come if I type in the number as a word like eight, it still says it's divisible by three?
none
Martin Zarate
10,723 PointsMartin Zarate
10,723 PointsRemember that each character is represented by a numerical ANSI code, so when you convert an string into a number, it becomes the numerical representation of the letters in the string. So, you can do mathematical operations with strings, just remember that the numbers will not be equivalent to the string meaning.