diff --git a/README.md b/README.md index 55f8eca3..ccde559c 100644 --- a/README.md +++ b/README.md @@ -6349,7 +6349,7 @@ Let's take console statement with unary operator as given below, ```javascript - console.log(+"Hello"); + console.log(+"Hello"); // NaN ``` The output of the above console log statement returns NaN. Because the element is prefixed by the unary operator and the JavaScript interpreter will try to convert that element into a number type. Since the conversion fails, the value of the statement results in NaN value.