Semicolon

alert("There will be an error")
[1, 2].forEach(alert)

// Here's how the engine sees it:
alert("There will be an error")[1, 2].forEach(alert)

The Modern Mode