Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed wrong answer on object instances comparison
`instanceof` only checks the class of a variable. It doesn't allow object comparison. `===` must be used here (`==` is not sufficient as it doesn't check the type).
- Loading branch information