Skip to content

Instantly share code, notes, and snippets.

@andyhd
Created January 16, 2012 09:38
Show Gist options
  • Save andyhd/1619995 to your computer and use it in GitHub Desktop.
Save andyhd/1619995 to your computer and use it in GitHub Desktop.
Maybe monad usage
var book = db.query("SELECT * FROM book WHERE id = 1");
function printTitle(book) { console.log(book.title) }
maybe(book).map(printTitle);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment