File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -53,11 +53,11 @@ typeof Symbol() // "symbol"
5353typeof [1 , 2 ] // "object"
5454typeof {} // "object"
5555
56- typeof NaN // "number" // NaN is Not a Number
57- typeof undeclaredVar // "undefined" // undeclaredVariable is never declared
58- typeof Infinity // "number" // Infinity, -Infinity, -0 are all valid numbers in JavaScript
59- typeof null // "object" // This stands since the beginning of JavaScript
60- typeof / regex/ // "object" // regular expressions start and end with '/' in literal form
56+ typeof NaN // "number" ( NaN is Not a Number)
57+ typeof undeclaredVar // "undefined" ( undeclaredVariable is never declared)
58+ typeof Infinity // "number" ( Infinity, -Infinity, -0 are all valid numbers in JavaScript)
59+ typeof null // "object" ( This stands since the beginning of JavaScript)
60+ typeof / regex/ // "object" ( regular expressions start and end with '/' in literal form)
6161```
6262
6363###### Notes
You can’t perform that action at this time.
0 commit comments