- == : 값이 같은지 판별. 문자열과 숫자도 값이 같으면 같다고 나온다.
- === : 값과 자료형이 같은지 판별
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script>
let a= 10;
let b = "10";
if(a == b){
alert("같음");
}else{
alert("다름");
}
if(a === b){
alert("같음");
}else{
alert("다름");
}
</script>
</head>
<body>
</body>
</html>
'Kosta DevOps 과정 280기 > Java' 카테고리의 다른 글
웹 어플리케이션 프로그래밍 (0) | 2024.07.12 |
---|---|
이벤트 연결하기 (0) | 2024.07.11 |
새로운 노드 생성하기 (0) | 2024.07.11 |
이벤트 (0) | 2024.07.11 |
변수의 자료형 (0) | 2024.07.10 |