Created
November 3, 2014 16:52
-
-
Save syzer/e7a69e8a31205766a7c0 to your computer and use it in GitHub Desktop.
FP workshop gist
This file contains 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
// 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: '[email protected]' | |
} | |
}, | |
{ | |
title: 'Functional JavaScript', | |
url: 'http://shop.oreilly.com/product/0636920028857.do', | |
author: { | |
name: 'Michael Fogus', | |
email: '[email protected]' | |
} | |
}, | |
{ | |
title: 'JavaScript Allongé', | |
url: 'https://leanpub.com/javascript-allonge', | |
author: { | |
name: 'Reginald Braithwaite', | |
email: '[email protected]' | |
} | |
} | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment