Question: 1. Parameters in a function definition are placed within _____________. braces parentheses single quotes double quotes 2. What is the result of executing the code
1. Parameters in a function definition are placed within _____________.
|
| braces |
|
| parentheses |
|
| single quotes |
|
| double quotes |
2. What is the result of executing the code below?
var a = 1;
function show() {
var b = 2;
return a + b;
}
console.log(b);
|
| Unreferenced Error |
|
| 2 |
|
| 3 |
|
| NaN |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
