Coding Ninjas Logo

Home > JavaScript Questions > What is the value of !'bang'?

What is the value of !'bang'?



Answer:

false. ! is NOT. If you put ! in front of truthy values, it will return false. Using !! (double bang) is a tricky way to check anything truthy or falsy by avoiding implicit type conversion of == comparison.


Similar Questions