removed quotes
This commit is contained in:
Debalina
2019-05-23 18:55:47 -07:00
committed by Tom
parent 55476cb165
commit 3609e48988

View File

@ -57,7 +57,7 @@ function(x){
The output of the `typeof` operator might not always be what you expect when you check for a number.
Numbers can turn in to the value [NaN (Not A Number)](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN) for multiple reasons.
```javascript
console.log(typeof NaN); //"number"
console.log(typeof NaN); // number
```
Maybe you tried to multiply a number with an object because you forgot to access the number inside the object.