Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Joylyne Mangezi
2,632 PointsHelp, i can not use a for- in loop in conjunction with an if statement.
How do i use a for- in loop in conjunction with an statement
let months = [1, 2, 3]
if month == 1{ println ("January")}
else if month == 2{ println("February")}
else if month == 3 { println("March")}
1 Answer

Jhoan Arango
14,575 PointsThis may be a late answer for you, but in order for you to use the for in loop, you have to use the .hashValue.
let months = [1,2,3]
for month in months {
if month.hashValue == 1 {
println("January")
} else if month.hashValue == 2 {
println("February")
} else if month.hashValue == 3 {
println("March")
} else {
println("There are only 3 months in this loop")
}
}
Michael Pastran
4,727 PointsMichael Pastran
4,727 Pointsyou could just use a switch statement