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

Austin Schneider
Austin Schneider
4,919 Points

json Parameter Question

Hello,

Just wondering if someone can explain to me the json parameter that is passed to the getJSON function in the event listener and then the new getProfiles function in this video. Where did 'json' come from? I don't see it declared as a variable anywhere... why does this work? Is it DOM object or something?

Thanks Austin

1 Answer

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,252 Points

.getJSON() is a javascript method that performance a particular action. I'm not sure what exactly you're wanting to know since you're not linking to the video or sharing any code, but you talk about a variable json that is passed into the method and that is simply a name for the parameter that is passed in. And you could give that any name. I would imagine it's called JSON because it refers to the file path to the JSON file that is referred to in the getJSON().

Hope this helps. Let us know if we can help further. :)