Correct Answer : C
Realated Questions
What happens when we run this code?
function dog() { print("I am a dog."); } dog.sound = "Bark";
What will be the output of the following code snippet?
function test(...args) { console.log(typeof args); } test(12);
Which one of the following is the correct output for the following given JavaScript code?
function height() { var height=123.56; var type =(height>=190)?"Taller":"Little short"; return type; } console.log(height())