SyntaxFix
Write A Post
Hire A Developer
Questions
There are two operators for type testing: E is T tests for E an instance of type T while E is! T tests for E not an instance of type T.
E is T
E is! T
Note that E is Object is always true, and null is T is always false unless T===Object.
E is Object
null is T
T===Object