Comment by max23_
15 hours ago
Maybe it is outdated practice but I still use == operator for null or undefined check.
if (value == null)
15 hours ago
Maybe it is outdated practice but I still use == operator for null or undefined check.
if (value == null)
yes `== null` is quite convenient for the null or undefined check.
In general, the whole `==` versus `===` is a silly argument in a typescript codebase, because if you know the types of the arguments, `==` behaves predictably.