Skip to content

Instantly share code, notes, and snippets.

View robertguturing's full-sized avatar

robertguturing

View GitHub Profile

Coffee Fun

You are creating a coffee app that lists certain info about this set of coffee data

let coffees = [
  { roaster: "Sweet Bloom", flavorProfile: ["cocoa nibs", "praline", "blackberry"] cost: 14},
  { roaster: "Unravel Coffee", flavorProfile: ["dried peaches", "apricot", "tangerine cream"], cost: 15 },
  { roaster: "Middle State", flavorProfile: ["blackberry", "chocolate", "jackfruit"], cost: 16 },
  { roaster: "Copper Door", flavorProfile: ["blackberry", "honey", "blacktea"], cost: 15 },
  { roaster: "Jubilee", flavorProfile: ["honeysuckle", "vanilla", "grapefruit"], cost: 15 }