diff --git a/helper.js b/helper.js index 96d82ad..734324e 100644 --- a/helper.js +++ b/helper.js @@ -3,9 +3,9 @@ function createHTMLElement(tag, props, children) { const element = document.createElement(tag); Object.assign(element, props); for (const child of children) { - if (child) { - element.append(child); - } + if (child) { + element.append(child); + } } return element; }