I can find one index using db.SKU but not sure how to or the correct code to find all the indexes
Using this code:
const venueBySku = db
.venueDB
.values()
.map((venue) => [venue.SKU, venue]);
const lookup = new Map(venueBySku);
const result = db.SKU
.filter(sku => lookup.has(sku))
.map(sku => lookup.get(sku));
console.log(result);
But how would I then add additional filters, i.e also check that the active and return round number.
Thanks.