JS QuerySelectorall mapa amostra
const posts = document.querySelectorAll(".post");
const updatedPosts = Array.from(posts).map((post) => {
post.textContent = "No more parties";
});
Cruel Cormorant