JSFiddle - React, Tailwind, and code Playground

HTML

<input type="button" value="Click me!">

CSS

input{
    width: 100px;
}

JavaScript

$(document).ready(function(){
    
    $('input').click(function(){
        var name = 'hello';
        var msg = 'hello world!';
        window[name](msg);
    });
    
    function hello(msg){
        alert(msg);
    }
});