Skip to content

Instantly share code, notes, and snippets.

@nrkn
Created November 16, 2015 22:59
Show Gist options
  • Save nrkn/f91aecb90a6b41631678 to your computer and use it in GitHub Desktop.
Save nrkn/f91aecb90a6b41631678 to your computer and use it in GitHub Desktop.
const template = data =>
`<p>
Use the <strong>${ data.power }</strong>, ${ data.name }!
</p>`
document.getElementById( 'target' ).innerHTML = template( {name: "Luke", power: "force"} )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment