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 trialJohn Pactaoin
417 PointsStill can't quite understand int and boolean
Hi, everyone. I still don't get the int and boolean function. Can someone explain it to me in simple terms, please? TY
2 Answers
Steven Parker
231,184 PointsAn "int" is just any whole number: 0, 1, 2, 13, -7, etc.
But a "boolean" can only represent two things, "true" and "false" (or taken as a number, only 1 and 0).
This makes them useful for different purposes. For example, if you wanted to count something, you might use an int; but if you were keeping track of the state of a light switch, you'd likely use a boolean.
Jeffrey Graham
1,516 PointsUl get it I recommend trying some really really easy coding challenges. itll click for you.
Kelsey Pope
553 PointsKelsey Pope
553 PointsThank you for that description!