async function like(postId) { document.getElementById("likes").innerText++; fetch("/api/like/" + postId, { method: "POST" }); }