0
what does <= mean?
3 Respuestas
+ 8
x <= y means x is less or equal than y (in other words, x is no more than y). This comparator is a combination of equal (=) and less than (<), and often used in if statements and for loops.
+ 1
thank you
0
Good