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 trialJan-Morten Reiners
1,236 PointsHelp, in Repl its correct. It gives me the right Result!
int value = -1; string textColor = null;
// if Value smaller then 0 then red, otherwise green
(value < 0) ? textColor = "red" : textColor = "green";
MSG: Did you include the boolean....
Hi There,
i have this tried out in the REPL and there is the correct result. so i dont know where my fault is.
Thank you for helping me.
int value = -1;
string textColor = null;
// if Value smaller then
(value < 0) ? textColor = "red" : textColor = "green";
1 Answer
Seth Kroger
56,413 PointsThe challenge is being a bit pickier because there is a more correct way, style-wise, to do it. The ternary statement isn't meant for different code but for choosing different values. The assignment is expected to be outside the ternary, and the ternary provides the value for the assignment.
textColor = value < 0 ? "red" : "green";