Skip to content

Instantly share code, notes, and snippets.

@kylewelsby
Created September 20, 2019 10:28
Show Gist options
  • Save kylewelsby/70685aafdef4372a9f7502627b754916 to your computer and use it in GitHub Desktop.
Save kylewelsby/70685aafdef4372a9f7502627b754916 to your computer and use it in GitHub Desktop.
var links = []
links.push({
title: "Best Offers",
href: "/offers"
})
links.forEach(link => {
console.log(`<a href="${link.href}">${link.title}</a>`)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment