Error Message
Current learning: Odin JS Understanding Errors. Tips for resolving errors: 3. Chrome Debugger
- Error messages parts:
-
- Error type
ReferenceError: var is not defined.
- Error location: file name, line number, and sometimes column number
at script.js:4
at script.js:4:13
- Stack trace: trace the evolution of an error back to its origin.
- Code:
const a = 5; const b = 10; function add() { return c; } function print() { add(); } print();
- Error message:
Uncaught ReferenceError: c is not defined script.js:5 at add (script.js:5) at print (script.js:9) at script.js:12
- Code:
- Error type