meaning of this >= | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

meaning of this >=

12th Jan 2017, 9:25 AM
nikhil patel
nikhil patel - avatar
3 Answers
+ 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 )
12th Jan 2017, 9:28 AM
visph
visph - avatar
0
greater or equal so it delivers following values 5 >= 1 == true 1 >= 1 == true 0 >=1 == false
12th Jan 2017, 9:27 AM
Andreas K
Andreas K - avatar
0
it means greater or equal to. 5>=5 True 5>5 False
12th Jan 2017, 9:37 AM
ramzi
ramzi - avatar