© 2026 Hedgehog Software, LLC
currentProducts.forEach(item1 => { pastProducts.forEach(item2 => { console.log("Item 1: " + item1.id + " " + "Item 2: " + item2) if (item1.id === item2) { console.log("match") } else { console.log("no match") } }) });