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 Handling Errors

Stheven Cabral
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Stheven Cabral
Full Stack JavaScript Techdegree Graduate 29,854 Points

Why doesn't checkStatus have parenthesis when invoked?

Why doesn't Guil include () when passing checkStatus inside .then()? When do you and when do you not use () in front of a function name when calling that function?

1 Answer

Steven Parker
Steven Parker
229,644 Points

You always use parentheses when calling a function, but in the example you mention it is not being called but is being passed as an argument (commonly known as a "callback").

The actual invocation will occur at a later time (controlled by the "then").