/* Ensighten Manage Training */ /* Apply - Module 5 - Code Snippets */ ########################### e.gif Suppressed JS Error ########################### // Call variable that does not exist console.log(doesNotExist); ########################## Visable JavaScript Error ########################## // Invalid assignment if(1 = 2){ console.log("They are equal!") } ########################################## BONUS: Errors that will prevent a commit ########################################## // Missing parenthesis var a = function (a, b {return a * b;} // Unterminated string var a = "Ensighten #################################### Locally Scoped JavaScript Variable #################################### var localVar = "Ensighten"; ##################################### Globally Scoped JavaScript Variable ##################################### window.globalVar = "Ensighten";