TS2531
error TS2531: Object is possibly ‘null’.
Broken Code ❌
1 |
|
Fixed Code ✔️
The error originates from the fact that address
can be null
. To fix the problem, we can check if address
is null
by using optional chaining:
1 |
|
error TS2531: Object is possibly ‘null’.
1 |
|
The error originates from the fact that address
can be null
. To fix the problem, we can check if address
is null
by using optional chaining:
1 |
|