+ 2
What does the "==" mean?
4 odpowiedzi
+ 1
== means is equal to... we are not using = because it is used to assign value. On the other hand == is used to check wether it is equal or not.
0
It's a comparison operator. It is checking whether the item in the left is equal to the item on the right. Hence >>>2 == 3 False >>>3 == 3 True
0
It checks if both numbers are equal to eachother. 3 == 3 True 3 == 1 False
0
= is action , for example to make a=b ,make a equal to b. == is used for check out if really equal to be or not, so we can use it for IF statement