Skip to content

Instantly share code, notes, and snippets.

@sachalifs
Created January 21, 2020 14:39
Show Gist options
  • Save sachalifs/306679b0e5bbb13931f4512604e3522d to your computer and use it in GitHub Desktop.
Save sachalifs/306679b0e5bbb13931f4512604e3522d to your computer and use it in GitHub Desktop.
var links = [
{ href: "https://github.com/sachalifs", text: "Github" },
{ href: "https://twitter.com/sachalifs", text: "Twitter" },
{ href: "https://instagram.com/sachalifs", text: "Instagram" },
{ href: "https://lacocinadelcodigo.com", text: "👨🏻‍🍳" }
];
var ul = document.createElement("ul");
links.forEach(function(link) {
var li = document.createElement("li");
var a = document.createElement("a");
a.setAttribute("href", link.href);
a.innerText = link.text;
li.appendChild(a);
ul.appendChild(li);
});
document.body.appendChild(ul);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment