Skip to content

Instantly share code, notes, and snippets.

View FacundoEG's full-sized avatar

Facundo Graña FacundoEG

  • Quilmes, Buenos Aires.
View GitHub Profile
const form = document.getElementById("formProds");
const sectionProd = document.getElementById("section__productos");
function main() {
form.addEventListener("submit", (e) => {
e.preventDefault();
// VALUES
const product = e.target.prod.value;
const quantity = e.target.cant.value;