Kyle Weems: function awesomeWorkday(tasks){if (tasks instanceof coolJsonStuff || tasks instanceof coolApiStuff) { return true; } else { return false;}}

cssquirrel even the if/else is redundant ;)


function awesomeWorkday(tasks) {
  return (tasks instanceof coolJsonStuff || tasks instanceof coolApiStuff) ? true : false;
}

updated: