Posts by Paulo Duarte Rettamozo • 21 points
1 post
-
2
votes3
answers194
viewsA: Why does isNaN(null) return "false"?
The typeof of null is object, can behave in several different ways, causing this type of behavior. This happens due to the functions prototype of an object, for example, implementing toString an…