is Expression

You will get to learn about the “is” Expression in this lesson.

The is expression is not related to the is operator that we saw in the null Value and the is Operator chapter, neither syntactically nor semantically:

a is b // is operator, which we have seen before 

is (/* ... */) // is expression
...