I can understand that JavaScript will convert the one data type to another data type to match the data types automatically. But I don't understand the following results. Please explain the same for better understanding.
console.log("32" > "4") //This result is showing false. when converting the number it must be true. But, why its showing as false?
console.log("32" < "4") //This result is showing true. Why?
console.log("32" > "14") // Its showing true. How?