You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nl-NL/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3936,9 +3936,9 @@ console.log(!typeof name === "string");
3936
3936
3937
3937
#### Antwoord:C
3938
3938
3939
-
`typeof name`returns`"string"`. The string `"string"` is a truthy value, so`!typeof name`returns the boolean value`false`. `false === "object"` en `false === "string"`both return`false`.
3939
+
`typeof name`retourneert`"string"`. De string `"string"` is een _truthy_ waarde, dus`!typeof name`retourneert de boolean waarde`false`. `false === "object"` en `false === "string"`retourneren beiden `false`.
3940
3940
3941
-
(If we wanted to check whether the type was (un)equal to a certain type, we should've written `!==` instead of `!typeof`)
3941
+
(Als we wilden checken of het type(on)gelijk is aan een bepaald type, zouden we `!==`moeten gebruiken in plaats van`!typeof`)
0 commit comments