Immediately-Invoked Function Expression ES5—ES6 ES5 (function() { // code })(); ES6 (() => { // code })(); ES6 short { // code }