|
|
|
|
|
by slewis
2015 days ago
|
|
I recommend just treating undefined and null as equivalent (since you can't control which one or ones third-party libraries will use). Everywhere you need to check for them do `!= null` or `== null` which is an idiomatic way to check for either. |
|