JavaScript Comparison

Assign 5 to x, and compare the different values:

5 == 8 -->

5 == "5" -->

5 === "5" -->

5 !== "5" -->

5 !== 5 -->

5 === 5 -->

5 === "5" -->

5 > 5 -->

5 >= 5 -->