JSFiddle - React, Tailwind, and code Playground

by Paolo Ciccarese

JavaScript

function fu(foo) {
  if(typeof foo==='undefined') {
 	  alert('sorry, that is undefined');
  }
}

fu();