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 trialRyan Myers
6,606 Pointsplease help
const isAdmin = true;
const isStudent = false;
let message;
let isAdmin = true;
let isStudent;
if ( isAdmin ) {
message = ("Welcome admin");
}
2 Answers
Curtis Alcorn
10,389 PointsisAdmin and isStudent have already been declared as const on lines 1 and 2. Since those variables exist, you can't then declare more variables with the same name.
Should look like this.
const isAdmin = true; const isStudent = false; let message;
if (isAdmin == true) { message = "Welcome admin"; }
Ryan Myers
6,606 Pointsconst isAdmin = true; const isStudent = false; if ( +isAdmin +=== true ) { message = "Welcome admin"; }
this is what i have now and it is asking if i am including the isAdmin variable inside the if condition
Curtis Alcorn
10,389 PointsYou don't want to use the plus symbols there, as that's only for numbers, not booleans. The code you typed in your original post is good if you just remove the 2 let variable lines for admin and student.
Ryan Myers
6,606 PointsRyan Myers
6,606 Pointsthat is what I have in the editor at this point and it says cannot read property of null