If we are comparing number string in javascript between 50 to 100 with the higher value its giving false, all other case its giving true.
example, "50"<"500" or "99"<"500" is giving false.
"30"<"500" or "499"<"500" is giving true.
Please explain this behavior in javascript.