IIFE,   is short for "immediately-invoked function expression".

The funtion is called immediately after the funtion is defined.

Like this:

(function (x) {
    console.log('x + x = ', x + x);
})(5); // x + x = 10