En utilisant des fonctions anonymes comme arguments d'autres fonctions
setTimeout(function () {
console.log('Welcome to JavaScript world')
}, 1000);
Gorgeous Gazelle
setTimeout(function () {
console.log('Welcome to JavaScript world')
}, 1000);