JSFiddle - React, Tailwind, and code Playground
by emilcieslar
JavaScript
function IIFE() {
alert('whatever');
}
function whatever(func1) {
alert(func1());
}
whatever(IIFE);
by emilcieslar
function IIFE() {
alert('whatever');
}
function whatever(func1) {
alert(func1());
}
whatever(IIFE);