0
meaning of this >=
3 odpowiedzi
+ 2
Greater or equal than.
It's a condionnal operator, use as "if something is greater or equal than other one then do this stuff else this other one'... ( commonly used in loops conditions )
0
greater or equal
so it delivers following values
5 >= 1 == true
1 >= 1 == true
0 >=1 == false
0
it means greater or equal to. 5>=5 True
5>5 False