「JavaScript」===で同じデータ型を比較する
書式
数値型の変数名1 === 数値型の変数2
使用例
<script> let cft = 55; // 数値型の55同士を===で比較 if (cft === 55) { alert("true"); } else { alert("false"); } // 数値型の55と文字列型55を===で比較 if (cft === "55") { alert("true"); } else { alert("false"); } </script>
結果
true
false