I just found a piece of code in which it is compared a string to an integer like this :
var result = "text" > 127;
and the result of this line of code is false. I have also tried to change it to equals or less than, and the result was still false:
var result = "text" === 127;
var result = "text" < 127;
What is the meaning to compare a string and a number like this if it always return false, or are there any cases when this will be true?