Verwendung anonymer Funktionen als Argumente anderer Funktionen
setTimeout(function () {
console.log('Welcome to JavaScript world')
}, 1000);
Gorgeous Gazelle
setTimeout(function () {
console.log('Welcome to JavaScript world')
}, 1000);