JSFiddle - React, Tailwind, and code Playground

HTML

Only testing Javascript... No relevant HTML that does anything

JavaScript

function abc(action)
    {
        //Do a bunch of stuff first and then do the action sent to this function
        alert('This function is named "abc"');
 
        //This is the part I do not know how to do.
        //The action might be an alert or something totally different so I can't just pass text
        //I need to know how to execute the action passed.
        action;
    }

    abc('alert("I like pizza")');