Skip to content

Instantly share code, notes, and snippets.

@brian-hannay
brian-hannay / whatdoesitdo.js
Created June 7, 2013 23:55
multiple return values... only one real one.
console.log(
(function(){
try{
return "This...";
}
catch(e){
return "This will never happen...";
}
finally{
return "Or that?";