Question:What is the correct output for the following code? var x=3; var y=x>4?3:5; alert(x+y);
var x=3; var y=x>4?3:5; alert(x+y);
A no output B 7 C 6 D 8
+ AnswerD
+ Report