Skip to content

Instantly share code, notes, and snippets.

@haingdc
Created February 28, 2018 10:56
Show Gist options
  • Save haingdc/525411628f3bd58fab7c8708cab170d0 to your computer and use it in GitHub Desktop.
Save haingdc/525411628f3bd58fab7c8708cab170d0 to your computer and use it in GitHub Desktop.
A Gentle Introduction to Functional JavaScript: Part 2
var ponies = [
[
['name', 'Fluttershy'],
['image', 'http://tinyurl.com/gpbnlf6'],
['description', 'Fluttershy is a female Pegasus pony and one of the main characters of My Little Pony Friendship is Magic.']
],
[
['name', 'Applejack'],
['image', 'http://tinyurl.com/gkur8a6'],
['description', 'Applejack is a female Earth pony and one of the main characters of My Little Pony Friendship is Magic.']
],
[
['name', 'Twilight Sparkle'],
['image', 'http://tinyurl.com/hj877vs'],
['description', 'Twilight Sparkle is the primary main character of My Little Pony Friendship is Magic.']
]
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment