Answer :

ASIAX
Hi!

The output of this JavaScript code is:

I am so EXCITED!
bc160402048

Answer:

i am so EXCITED.

Explanation:

this program contains two variables

i.e

var phrase = "I am so";

var emotion = "excited";

the output for this program

is var sentence = phrase + " " + emotion.toUpperCase() + "!";

console.log(sentence);

which is combination of two phrases i.e var phrase and emotion phrase in capital letters(upper case)


Other Questions