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

Luke Riley
Luke Riley
10,403 Points

I can't get task 2 to execute

I can't seem to get the code to execute in the second function:

<script>
      var anonymousFunction = function() {};

      anonymousFunction(function() {window.didExecute = true;});
</script>
Luke Riley
Luke Riley
10,403 Points

For some reason the post divided part of the code from the code window so be sure to look at it together:

var anonymousFunction = function() {};

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

1 Answer

Hossam Khalifa
Hossam Khalifa
17,200 Points
var anonymousFunction = function(){};

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

You have to use the () at the end oft the anonymous function to make it execute