JSFiddle - React, Tailwind, and code Playground

by tara5

JavaScript

const dfd = $.Deferred();

dfd.resolve(1, 2, 3).then((a, b, c) => {
	console.log(a, b, c);
});