Referenceerror
//Occurs when a non-existent variable is used/referenced
let firstName = "Jack";
console.log(firstname);
//The variable firstname does not exist; it is a misspelling of firstName.
Tough Tortoise