glissario / bootcamp-schedule

bootcamp progress
0 stars 0 forks source link

First JavaScript Web App: Save Color #70

Closed codingbootcampseu closed 3 years ago

codingbootcampseu commented 3 years ago

Hints

<main>
  <ul id="colors"></ul>
</main>
const colorValueEl = document.querySelector("#colorValue");
const color = colorValueEl.innerText;
const newColor = document.createElement("li");
// TODO: set necessary properties
colorList.appendChild(newColor);

Example Solution and Comparison

glissario commented 3 years ago

https://glisscoulette.netlify.app/

delete-button not working accurately - have to remove the right position in the array