IIFEs js code example
Example: iife
/*An IIFE (Immediately Invoked Function Expression) is a JavaScript
function that runs as soon as it is defined
*/
(function () {
//write your js code here
});
/*An IIFE (Immediately Invoked Function Expression) is a JavaScript
function that runs as soon as it is defined
*/
(function () {
//write your js code here
});