Question: Question 1 3 : ( 2 points ) Consider the following code: ` ` ` function calculateTotal ( subtotal ) { var processingFee = 1

Question 13: (2 points) Consider the following code:
```
function calculateTotal(subtotal){
var processingFee =10;
var total = subtotal + processingFee;
console.log(total);
}
calculateTotal("20");
```
Which value will be displayed in the browser's developer console?
A."2010"
B.30
C.10
D."20"
E. NaN
Question 14: (2 points) Consider the following code:
var c =["red", "orange", "yellow", "green", "blue", "black"]; console.log(c[2];
Which value will be displayed in the browser's developer console?
A. "blue"
B. "orange"
C. "yellow"
D. "green"
E. undefined
Question 15: (2 points) In an HTML document, where is

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!