Question: Consider the following code segment containing an if-else statement: if (x > y) { y = x; } else if (x == y) { x
Consider the following code segment containing an if-else statement:
if (x > y) {
y = x;
}
else if (x == y) {
x = 100;
}
alert('x = ' + x + ', y = ' + y);
Given the following assignments, predict the output that the preceding code would produce:
Step by Step Solution
3.42 Rating (155 Votes )
There are 3 Steps involved in it
x 0 y 5 x 0 ... View full answer
Get step-by-step solutions from verified subject matter experts
Document Format (1 attachment)
1409-C-S-O-S(1051).docx
120 KBs Word File
