비교 연산자
a == b : a와 b가 같으면 true, 같지 않으면 false. 데이터 타입은 비교하지 않음
a === b : a와 b가 같고 데이터 타입이 같으면 true, 같지 않으면 false.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
let comparison1 = (5 > 2);
console.log(comparison1);
let comparison2 = (5 == 5);
console.log(comparison2)
let comparison3 = (5 == '5');
console.log(comparison3)
let comparison4 = (5 === '5');
console.log(comparison4)
// a != b : a와 b가 같지 않으면 true, 같으면 false
// a !== b : a와 b가 같지 않거나 데이터 타입이 같지 않으면 true, 같으면 false.
let comparison5 = (5 != '5');
console.log(comparison5);
let comparison6 = (5 !== '5');
console.log(comparison6);
</script>
</body>
</html>