|
|
|
|
|
by mishoo
2827 days ago
|
|
I do, when I know the types match. Also, I always use == to test if something is either null or undefined; cases where the distinction matters are extremely rare, and this looks too silly: typeof foo === "undefined" || foo === null. |
|