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

Consider the following code: function outer(a, b, c) {   function inner(b, c) {     b = b || 0;     c = c || 1;     return a + b + c;   }      var 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); :