Skip to content

Instantly share code, notes, and snippets.

@haingdc
Created April 10, 2018 03:02
Show Gist options
  • Save haingdc/d4da87ba99ea692bb4f93eb4ac3ce9b7 to your computer and use it in GitHub Desktop.
Save haingdc/d4da87ba99ea692bb4f93eb4ac3ce9b7 to your computer and use it in GitHub Desktop.
Thao tác với DOM thông qua TDD
// photo-lister.js
PhotoLister = {
photoToListItem: function(photo) {
return (
'<li><figure><img src="' +
photo.url +
'" alt=""/>' +
"<figcaption>" +
photo.title +
"</figcaption></figure></li>"
);
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment