Skip to content

Instantly share code, notes, and snippets.

@jimdel
Created February 1, 2018 04:19
Show Gist options
  • Save jimdel/944435b957be6ee6946b476bfe49f25d to your computer and use it in GitHub Desktop.
Save jimdel/944435b957be6ee6946b476bfe49f25d to your computer and use it in GitHub Desktop.
app.get('/cake', (req, res, next) => {
let chocolateCakeCount = 1
if(chocolateCakeCount >= 1) {
res.send(`Here is some chocolate cake!`)
} else {
var error = new Error('Sorry, there is no chocolate cake!');
next(error);
return
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment