File size: 219 Bytes
85784d8 |
1 2 3 4 5 6 7 8 9 10 |
/**
*
* @param {string} textContent
* @returns {HTMLHeadingElement}
*/
function Heading(textContent) {
const heading = document.createElement("h1");
heading.textContent = textContent;
return heading;
} |