Closed codingbootcampseu closed 3 years ago
Add Todo
Hints
Create new DOM elements and attach them to existing DOM elements.
const newEl = document.createElement('p'); newEl.innerText = "Hello World"; const body = document.querySelector('body'); body.appendChild(newEl);
Example Solution and Comparison
erledigt, aber die Übereinstimmungen der Namen muss richtig gut sitzen, und value statt Value :)
Add Todo
button is clickedHints
Create new DOM elements and attach them to existing DOM elements.
Example Solution and Comparison