Skip to content

Instantly share code, notes, and snippets.

@haingdc
Created February 28, 2018 11:08
Show Gist options
  • Save haingdc/214ae3b54961928f9732d13d9b69307d to your computer and use it in GitHub Desktop.
Save haingdc/214ae3b54961928f9732d13d9b69307d to your computer and use it in GitHub Desktop.
A Gentle Introduction to Functional JavaScript: Part 2
var ponyToListItem = function(pony) {
var template = '<li><img src="{image}" alt="{name}"/>' +
'<div><h3>{name}</h3><p>{description}</p>' +
'</div></li>';
return t(template, pony);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment