0
Var x = 100; while(x>=50){ x-- } x % 7 document.write(x):
Javaseript
6 Antworten
+ 2
Shola Micheal because 49%7 = 0
Explanation:-
while (x >= 50) {
x--;
}
here while loop will go till x >= 50 and x will decrement by 1 till x >= 50
so when 50 >= 50, then x = 49 because of x--
finally x % 7 = 49 % 7 = 0
+ 2
Thanks AJ #Infinity Love
0
Var not valid
var is valid
0
Pls someone should help me out here
0
What do u want to do with that code
Tell me in detail
0
I dont know how they got zero(o) as an answer......