Skip to content

Instantly share code, notes, and snippets.

@Roundyy
Roundyy / index.js
Created February 25, 2026 09:34
JavaScript focus on DOM and Event
const form = document.getElementById("task-form");
const input = document.getElementById("task-input");
const taskList = document.getElementById("task-list");
const emptyState = document.getElementById("empty-state");
form.addEventListener("submit", function (event) {
event.preventDefault();
if (input.value.trim() === "") {
return;