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.

jdee
6,655 PointsHow does this condition work?
Hi, Please help me understand how the person.role value is used as a condition? An added test on the previous line shows that this is a string.
function personDescription(person) {
var description = person.first_name;
alert(typeof(person.role) === "string"); // true
if(person.role) { // a condition using a string???
description = description + " is a ";
description = description + person.role;
}
console.log(description);
}
1 Answer

Nick Hericks
Full Stack JavaScript Techdegree Graduate 20,704 PointsIf I understand this correctly, I believe the example is using an object property as a condition. So if the 'person' object has a property named 'role', then the condition is true. If there is no 'role' property for the 'person' object, then the condition would evaluate to false.
The reason typeof is telling you it's a string is because the value of that object property is a string. Test this by changing the value of person.role from a string to a number (Ex. person.role = 23) and you'll see that typeof will tell you it is now a number.