while I'm learning JavaScript comparison and logical operators I faced this question put the right operators to make it return true:
console.log(? 20 ? false);
and I answered like this:
console.log(! 20 == false);
and it returned true when == and <= and >=. I want to know why is the value true and thanks.