scrimba
Note at 1:47
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Note at 1:47
AboutCommentsNotes
Note at 1:47
Expand for more info
index.js
run
preview
console
let people = []
let myArray = [];

const inputFieldEl = document.getElementById("input-field")
const addButtonEl = document.getElementById("add-button")
const peopleListEl = document.getElementById("people-list")

const data = JSON.parse(localStorage.getItem('myKey')) || [];
if (data.length > 0) {
people = [...data];
}

renderList(people);

addButtonEl.addEventListener("click", function() {
let inputValue = inputFieldEl.value

if (inputValue) {
people.push(inputValue)
localStorage.setItem('myKey', JSON.stringify(people));
clearInputFieldEl()

renderList(people)
}
})

function renderList(array) {
clearPeopleListEl()

for (let i = 0; i < array.length; i++) {
let currentPerson = array[i]

appendPersonToPeopleListEl(currentPerson)
}
}

function clearPeopleListEl() {
peopleListEl.innerHTML = ""
}

function clearInputFieldEl() {
inputFieldEl.value = ""
}

function appendPersonToPeopleListEl(person) {

let newEl = document.createElement("li")

newEl.textContent = person

newEl.addEventListener("dblclick", function() {
let index = people.indexOf(person)

people.splice(index, 1)

renderList(people)
})

peopleListEl.append(newEl)
}
Console
/index.html
LIVE