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 JavaScript Foundations Functions Anonymous Functions

Juan Carlos Ferreiro
Juan Carlos Ferreiro
8,478 Points

missing parenthesis on task 2

i cant pass task two i dont know what i am doing wrong

Could you please paste your code here?

1 Answer

Keith Kelly
Keith Kelly
21,326 Points

I found an answer to the same question here

In order to make the function with window.didExecute execute, you will need to add parentheses at the end of the function.

(function () {
  window.didExecute = true;
})();