📅  最后修改于: 2022-03-11 15:01:56.288000             🧑  作者: Mango
//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.