Created
June 7, 2013 23:55
-
-
Save brian-hannay/5733214 to your computer and use it in GitHub Desktop.
multiple return values... only one real one.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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