Skip to content

Instantly share code, notes, and snippets.

@edutrul
Created April 12, 2017 06:16
Show Gist options
  • Save edutrul/647782f9b7a2e02c0643ccc66b88275f to your computer and use it in GitHub Desktop.
Save edutrul/647782f9b7a2e02c0643ccc66b88275f to your computer and use it in GitHub Desktop.
template_string.js
let topic = {
'title': 'my title',
'author': 'edu',
'body': 'omg'
};
let title = `<h2> ${topic.title} </h2>`;
let author = `<small> ${topic.author} </small>`;
let body = `<p> ${topic.body}</p>`;
let message = { title, author, body };
console.log(message);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment