difference between == and === operators?

Is (====) operator available in java or not?

difference between == and ===

View Answers

May 23, 2011 at 11:25 AM

The difference between the two is that '==' should be used to check if the values of the two operands are equal or not. On the other hand, '===' checks the values as well as the type of operands.









Related Tutorials/Questions & Answers:
Advertisements