+ 2

"==" What is it mean?

"==" What is it mean?

29th Oct 2017, 6:34 PM
Maksim Shcherba
Maksim Shcherba - avatar
6 odpowiedzi
+ 2
= means equals to == is a comparison between a and b (a==b) which checks whether they are equal or not.
29th Oct 2017, 6:48 PM
WildGeese
WildGeese - avatar
+ 1
== means equal to. it is a relational operator. normally used for comparison among different opprents. work with numerical values but not with string values.
4th Feb 2018, 2:34 PM
Shivam Saurabh
Shivam Saurabh - avatar
+ 1
'==' means to check between two variable of any data type that whether they are equal or not. for example a=5 and a==b the b=5.
16th May 2018, 4:01 AM
Shivam Saurabh
Shivam Saurabh - avatar
0
it is an operator reresenting an equal sign in maths. so while the statement "a is greater than b", is reptesented by "a>b", the statement "a is equal to b" is represented by "a==b".
13th Jan 2018, 6:07 AM
Starry_Knight
Starry_Knight - avatar
0
== is a comparison operator. it simply compares the two values. the underlining condition being both operand has to be same data type.
17th Jan 2018, 2:07 PM
typing
typing - avatar