Skip to content

Instantly share code, notes, and snippets.

@garlicnation
Last active February 10, 2016 00:21
Show Gist options
  • Save garlicnation/e948d5acd9619f82378b to your computer and use it in GitHub Desktop.
Save garlicnation/e948d5acd9619f82378b to your computer and use it in GitHub Desktop.
'use strict';
try {
Promise.resolve(true).then(function{
undefinedVariable = [];
console.log("Boo");
}, function(err) {
console.log(err)
})
} catch (err) {
console.log(err.stack)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment