SzabiSch / bootcamp-schedule

0 stars 0 forks source link

First JavaScript Web App: Add Todo to List #76

Closed codingbootcampseu closed 3 years ago

codingbootcampseu commented 3 years ago

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

SzabiSch commented 3 years ago

erledigt, aber die Übereinstimmungen der Namen muss richtig gut sitzen, und value statt Value :)