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 trial

JavaScript

Why will my code only execute the first time I click?

I'm curious as to why this code runs the first time I click in the header area of the page but subsequent clicks do absolutely nothing.

Code:

const head = document.getElementById("myHeading");

head.addEventListener('click', () => {

if (head.style.color = "black") {

  head.style.color = "green";

} else if (head.style.color = "green") {

  head.style.color = "red"; 

} else if (head.style.color = "red") {

  head.style.color = "black";

}

});

2 Answers

Steven Parker
Steven Parker
229,744 Points

I see two issues:

  • you have assignments ("=") instead of comparisons ("==") in your "if" statements
  • unless you set it using inline style, the initial value of the "color" property is not "black" (it's just empty)

Thank you so much! I am just learning the basics of JS, having come from VBA, and "=" vs "==" keeps slipping my mind.