File size: 226 Bytes
85784d8 |
1 2 3 4 5 6 7 8 9 10 |
/**
*
* @param {string} textContent
* @returns {HTMLParagraphElement}
*/
function Paragraph(textContent) {
const paragraph = document.createElement('p');
paragraph.innerHTML = textContent;
return paragraph;
} |