top of page
bottom of page
function saveCart(item) { let cart = JSON.parse(localStorage.getItem("cart")) || []; cart.push(item); localStorage.setItem("cart", JSON.stringify(cart)); } function loadCart() { return JSON.parse(localStorage.getItem("cart")) || []; }