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 trialLuke Riley
10,403 PointsI 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>
1 Answer
Hossam Khalifa
17,200 Pointsvar anonymousFunction = function(){};
(function (){window.didExecute = true;})()
You have to use the () at the end oft the anonymous function to make it execute
Luke Riley
10,403 PointsLuke Riley
10,403 PointsFor 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;});