To compare if two numbers are the same, we use the equality operator, ===.
===
5 === 5
To check if a string is equal to another string, we can use the strict equality operator, ===.
console.log("apple" === "apple");