JSFiddle - React, Tailwind, and code Playground

by austegard

JavaScript

/* Hello and World are both treated as resolved deferreds - they can be replaced with any function, like a $.get, etc */
$.when( "Hello", "World" ).then(
   function(x, y){ alert(x + " " + y); }
);