1.

Code A:
var x = 10;
y = --x + 1;
alert(y);

Code B:
var x = 10;
y = x-- + 1;
alert(y);
11.A _________ is a group of reusable code which can be called anywhere in your program.

A. exception
B. function
C. loop
D. switch
Answer» C. loop


Discussion

No Comment Found