JSFiddle - React, Tailwind, and code Playground

by CyaNn

JavaScript

function exec(fun) {
	fun();
}

exec(() => { // lambda
	console.log("Delegation works !");
});