Qui avez-vous besoin de demi-colons en 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