Skip to main content

Resources for Vanilla Javascript

I have found that chatgpt and other LLM's are pretty good with Vanilla JS. But still you need to understand what they are suggesting.

function logSubmit(event) {
log.textContent = `Form Submitted! Timestamp: ${event.timeStamp}`;
event.preventDefault();
} const form = document.getElementById("form");
const log = document.getElementById("log");
form.addEventListener("submit", logSubmit);