0
What value is stored in the variable c ?
var a = 42; var b = 60; var c = a >= b;
1 Réponse
+ 3
it's "False".
Why? because you just use a conditional operator when you want to assign a value to the c variable.
So it return false, because the a variable is smaller than the b variable.