Consider the following code: function outer(a, b, c) {   fu…

Questions

Cоnsider the fоllоwing code: function outer(а, b, c) {   function inner(b, c) {     b = b || 0;     c = c || 1;     return а + b + c;   }      vаr result = inner(b);   console.log(a, b, c, result); } Note: use a "," and one space between the printout of variable values, for example: 1, 2, 3, 4 What is the output of calling outer(10, 5, 3); : What is the output of calling outer(10); :