Funções anônimas em JavaScript
let text = function () {
console.log('Hello World');
};
text();
Gorgeous Gazelle
let text = function () {
console.log('Hello World');
};
text();