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 JavaScript Basics (Retired) Creating Reusable Code with Functions Giving Information to Functions

Marko Delgadillo
Marko Delgadillo
4,524 Points

Glossary of terminology used by Dave McFarland

Hi, with all the different terminology being used in this course, it's easy for me to forget what is what. Is there a glossary of the terminology used in this course? I'm sure I can find it at the Mozilla developer page but I would like a resource for ONLY the terminology used so far in the JavaScript course and nothing more.

Terms such as Parameters, functions, JavaScript objects, arguments, etc...

1 Answer

james south
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
james south
Front End Web Development Techdegree Graduate 33,271 Points

those are all universal computer science terms. every language has functions that ask for parameters (variables used by the function), when functions are called you feed them arguments (the values held by the parameters when the function is called), objects hold data and methods (functions) can be called on them to manipulate that data, etc. if you need to look something up, wikipedia for instance has decent discussions of what these all mean.