Quem você precisa de semicolons em javascript
// Semicolons are VERY important while coding in JavaScript
// After a statement, you should add a semicolon so that they do not leak into other parts of your programme
// Example:
let age = 19;
console.log(age);
Old-fashioned Otter