JS Undefined 1

by Paolo Ciccarese

JavaScript

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

fu();