Skip to content

Instantly share code, notes, and snippets.

@haingdc
Last active April 10, 2018 03:38
Show Gist options
  • Save haingdc/a0f36f143906ba58d8513c166a0dd7c1 to your computer and use it in GitHub Desktop.
Save haingdc/a0f36f143906ba58d8513c166a0dd7c1 to your computer and use it in GitHub Desktop.
Thao tác với DOM thông qua TDD
photoListToHTML: function(photos) {
return [
"<ul>",
photos.map(PhotoLister.photoToListItem).join(""),
"</ul>",
].join("");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment