I want to know what is a formal parameter list in Execution context of javascript. Say for example i have a function like this
function test(a, b, c) {
var d, e;
}
When this function is activated what will be the formal parameter list? Will it be just a,b and c or d and e will also be there?
Formal parameters are values provided as input to the function, so in your case formal parameters are only: a, b and c.