JSFiddle - React, Tailwind, and code Playground

JavaScript

say("Hello")("World");

function say(firstword){
    return function(secondword){
     alert(firstword + " " + secondword);   
    }
}