JSFiddle - React, Tailwind, and code Playground

JavaScript

var say = function (str) {
 document.write(str);
 return say;
}

say('Hello')('World');