Created
February 28, 2018 10:56
-
-
Save haingdc/525411628f3bd58fab7c8708cab170d0 to your computer and use it in GitHub Desktop.
A Gentle Introduction to Functional JavaScript: Part 2
This file contains hidden or 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
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