Code Fix

初級ReferenceError: x is not defined の原因と直し方 › パターン1

ReferenceError: x is not defined の原因と直し方

存在しない変数・関数名を参照したときに出るエラーです。

 1  let total = 100;
 2  console.log(______);
                   ^
main.js:2 console.log(totall); ^ ReferenceError: totall is not defined

空欄を埋めて実行を通す

広告
広告スロット(未設定)

ReferenceError: x is not defined の原因と直し方

タイプミスだけでなく、let/constのブロックスコープの外から参照した場合にも同じエラーになります。

このエラーの解説と類題をまとめて見る →

広告
広告スロット(未設定)