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 trialSandy Jones
7,854 PointsI don't understand why my answer is wrong.
1st Challenge question is In the second parameter of the "coolCtrl" create an anonymous callback function that takes $scope as a parameter.
angular.module('foobar', [])
.controller("coolCtrl", ['$scope', function($scope) {
}]);
1 Answer
William Li
Courses Plus Student 26,868 PointsIn the second parameter of the "coolCtrl" create an anonymous callback function that takes $scope as a parameter.
For part 2, I see that you indeed created the required anonymous callback function, but there're also some extra stuffs you put in there that prevents your code from working.
angular.module('foobar', [])
.controller('coolCtrl', function($scope) {
});
Now your code should pass the challenge.
Sandy Jones
7,854 PointsSandy Jones
7,854 PointsThank you for your help.