Where the lines of code get tangled up in knots.
// Code that won't compile var x = 5; var y = 5; if (x = y) { console.log("Bloop!"); }
// Code that just won't run function bloop() { console.log("Bloop!"); } bloop();