Skip to content

Instantly share code, notes, and snippets.

@brian-hannay
Created June 7, 2013 23:55
Show Gist options
  • Save brian-hannay/5733214 to your computer and use it in GitHub Desktop.
Save brian-hannay/5733214 to your computer and use it in GitHub Desktop.
multiple return values... only one real one.
console.log(
(function(){
try{
return "This...";
}
catch(e){
return "This will never happen...";
}
finally{
return "Or that?";
}
})()
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment