JSFiddle - React, Tailwind, and code Playground

by graphettion

HTML

<a id="blah"></a>

JavaScript

// create element
const myElement = Object.assign(document.getElementById('blah'), { 
	textContent: 'Google', 
	href: 'https://www.google.com' 
})

// display element
document.body.appendChild(myElement)