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 trialDan Neumann
Courses Plus Student 10,318 PointsJavaScript Foundations Question
In the "Objects" section in the "call and apply" challenge, I put "greeting.apply(andrew, args1);" on line 30 and it wasn't right. I of course moved </script> down one line. I can't think of any other way to answer the question. Any ideas?
2 Answers
Nichole Frazier
9,653 PointsHey Dan,
You need to use apply on genericGreet instead of greeting.
Try something like this:
var greeting = genericGreet.apply(andrew, args1);
Dan Neumann
Courses Plus Student 10,318 PointsThat worked - Thanks so much.
Dan