JSFiddle - React, Tailwind, and code Playground

by Marventus

JavaScript

function alerts(wh) {
    var anims = {
        "anim1" : function() {
            alert("This is an alert");
        },
        "anim2" : function() {
            alert("This is another alert");
        }
    };
    anims["anim" + wh]();
}
alerts("1");
alerts("2");