An Immediately Invoked Function Expression (IIFE) is another way to execute a function immediately:

(function() { console.log("hello"); })(); // "hello"