Monday, January 6, 2014

Blog 31

Blog 31

Study the code editor an work out the values of the variables after the code runs. Enter the values for a and b.

var a = 5;
whle (a<3) {
a= a +1;
}

var b = 10;
whle (b< = 5) {
b = b +1;
}


a=

b =

6 comments: