"> 01-07_equality "> 01-07_equality ">
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>01-07_equality</title>
<script type="text/javascript">
	/*
		# 일치 연산자
		- === : 자료형과 값이 같은지 비교.
		  !== : 자료형과 값이 다른지 비교.
	*/
	console.log(`52 == '52' : ${52 == '52'}`); // int == string 도 true로 나옴.
	console.log(`52 === '52' : ${52 === '52'}`); // 자료형이 달라 false
	console.log(`52 !== '52' : ${52 !== '52'}`); // 자료형이 달라 true
</script>
</head>
<body>

</body>
</html>