1-Operator- X==Y
Name- Equal
Description- True if X is equal to Y
Example- 5==6 return false
2-Operator- X===Y
Name- Identical
Description- True if X is equal to Y, and they are of same type
Example- 5==="5" return false and 5===5 return true
3-Operator- X!=Y
Name- Not Equal
Description- True if X is not equal to Y.
Example- 5!==6 return true
4-Operator- X<>Y
Name- Not Equal
Description- True if X is not equal to Y.
Example- 5<>6 return true
5-Operator- X!==Y
Name- Not Identical
Description- True if X is not equal to Y, or they are not same type.
Example- 5!="5" return true
6-Operator- X>Y
Name- Greater than
Description- True if X is greater than Y.
Example- 5>6 return true
7-Operator- X<Y
Name- Less than
Description- True if X is less than Y.
Example- 5<6 return true
8-Operator- X>=Y
Name- Greater than or equal to
Description- True if X is greater than or equal to Y.
Example- 5>=6 return false
9-Operator- X<=Y
Name- Less than or equal to
Description- True if X is less than or equal to Y.
Example- 5<=6 return true
Copyright ©2022 coderraj.com. All Rights Reserved.