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 trialjdee
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.