Skip to content

Instantly share code, notes, and snippets.

@yuheiy
Created October 3, 2015 13:08
Show Gist options
  • Save yuheiy/0b2c2c74edddcc670ecc to your computer and use it in GitHub Desktop.
Save yuheiy/0b2c2c74edddcc670ecc to your computer and use it in GitHub Desktop.
var html = users.map(function (user) {
return `
<dl>
<dt>name</dt>
<dd>${user.name}</dd>
<dt>age</dt>
<dd>${user.age}</dd>
</dl>
`;
});
var result = document.getElementById('result');
result.insertAdjacentHTML('beforeend', html.join(''));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment