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

Help with this question "How do programmers describe the act of running the programming within a function"

Hi all,

I am studying Javascript basic and I have seen this question . "How do programmers describe the act of running the programming within a function"

Could you help with explain me about this?

2 Answers

You say you 'call' the function.

Thanks! Yes, I have selected this. I want to know more background detail about answer.

Hubert Odias
Hubert Odias
1,898 Points

calling a function is when you use the function to invoke it. Thats another way of saying calling the function.

function hello(a,b){ return a*b; } //this at the bottom is what we call "Calling the Function" or "invoking the function" hello(10*3);