In jQuery there exist functions' parameters, such as jQuery.get()'s callback's data
or textStatus
. Their values are not passed to the function but by the function. Is there a special name for this kind of parameters? Are they jQuery-specific or do they appear in plain JS as well?
I am familiar with the concept of callbacks. I wannt to get more insight on how does it work that the parameters have their values supplied by the code.