IIFE
An IIFE (Immediately Invoked Function Expression) is a JavaScript function that runs as soon as it is defined.
(function name() {
console.log('Hello developers');
})();
Last updated
Was this helpful?
An IIFE (Immediately Invoked Function Expression) is a JavaScript function that runs as soon as it is defined.
(function name() {
console.log('Hello developers');
})();
Last updated
Was this helpful?