The abilities property of bird
is set as null in the code given below.
Hence we get an error when
trying to access bird.abilities.canFly.
Use optional chaining to make
the if condition work,
even if the value of bird.abilities
is null or undefined.
For example: