Skip to content

Instantly share code, notes, and snippets.

@syzer
Created November 3, 2014 16:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save syzer/e7a69e8a31205766a7c0 to your computer and use it in GitHub Desktop.
Save syzer/e7a69e8a31205766a7c0 to your computer and use it in GitHub Desktop.
FP workshop gist
// task #function composiotion
var articles = [
{
title: 'Why OO Sucks by Joe Armstrong',
url: 'http://www.bluetail.com/~joe/vol1/v1_oo.html',
author: {
name: 'Joe Armstrong',
email: 'empty@email.com'
}
},
{
title: 'Functional JavaScript',
url: 'http://shop.oreilly.com/product/0636920028857.do',
author: {
name: 'Michael Fogus',
email: 'empty2@email.com'
}
},
{
title: 'JavaScript Allongé',
url: 'https://leanpub.com/javascript-allonge',
author: {
name: 'Reginald Braithwaite',
email: 'reg@braythwayt.com'
}
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment