Hi, i´m trying to add local storage with typescript. But I´m struggling to understand. I have to use json.parse but I´m not sure on the rest. I would appreciate some help
voorbeeld2();
const json = {"name"};
opslag = JSON.parse(json);
function voorbeeld2(): void {
const naamElement: HTMLInputElement = document.querySelector("#uitjenaam") as HTMLInputElement;
const knopElement: HTMLButtonElement = document.querySelector("#uitjebevestigen") as HTMLButtonElement;
// voorbeeld 2
knopElement.addEventListener("click", () => {
if (naamElement.value) {
}
else {
alert("Voer een uitje in.");
// saveLocalStorage("Opgeslagen uitjes", naamElement.value);
}
});
}