Ran into an interesting issue. I was working on trying to toggle a boolean that was assigned to a variable. It wasn't working and eventually I tried this code.
var status = false;
console.log(!status);
I expected it to provide true
in the console, but instead I got false
. I figured that javascript would run the code inside the parenthesis first to find it's value and then console.log the value. Could you please explain why I am not getting a true
value in the console?
See the below screenshot which says that status is a property in window. So this directly refers to the window.status. It is not advisable to reuse certain variables and properties that are having default meaning(reminding about keywords in oops languages)
This will give you expected output.
"status" is a predefined name of implementation-dependent JavaScript objects, methods, or properties. It is better avoid the identifiers as names of JavaScript variables. If you are using it outside the function then it means you want to implement any other thing by status value.
MDN
window.status exists already. so you can't use status variable .
Check the type for
status
like this:The output will be:
"string"
.Note that
false
and"false"
are not same.When you define:
That's why you are not getting
true
.window.status already exists (it is used to get/set the text of the browser's status bar) and when a value is assigned to it, it is converted to a string. If you do
console.log( status );
you will see thatstatus
has the string value"false"
, which causes you to see the outputfalse
, since you effectively have!"false"
and"false"
is a truthy value in JavaScript.If you do the same thing inside a function you'll get the expected output: