JSFiddle - React, Tailwind, and code Playground

by Jessie Lau

JavaScript

var say = function (string1) {
    return function (string2) {
         string1 + string2;
    }

say("Hello")("World")