From 3609e48988d81f7bc96e4404f70c4c14793f1d0e Mon Sep 17 00:00:00 2001 From: Debalina Date: Thu, 23 May 2019 18:55:47 -0700 Subject: [PATCH] fix typo (#29747) removed quotes --- guide/english/javascript/typeof/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/typeof/index.md b/guide/english/javascript/typeof/index.md index 8a192e0669..c85430990c 100644 --- a/guide/english/javascript/typeof/index.md +++ b/guide/english/javascript/typeof/index.md @@ -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.