I decided to learn a new language for myself. But there was one question that confuses me. What === operator === ? How is it different from the usual comparison == ? Is it equals() ?
|
1 answer
The documentation states that
=== is an object reference comparison operator
a == b analogous to simply calling a.equals(b)
|