JS Undefined 2

by Paolo Ciccarese

JavaScript

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

fu();