Skip to content

Commit 57dc968

Browse files
authored
Comment fix
1 parent 1604d46 commit 57dc968

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

challenges/primitives.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ typeof Symbol() // "symbol"
5353
typeof [1, 2] // "object"
5454
typeof {} // "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

0 commit comments

Comments
 (0)