Untitled

 avatar
unknown
plain_text
7 days ago
294 B
3
Indexable
let foods = {
  apples: 25,
  oranges: 32,
  plums: 28,
  bananas: 13,
  grapes: 35,
  strawberries: 27
};

function checkInventory(scannedItem) {
  // Only change code below this line

  return foods[scannedItem]

  // Only change code above this line
}

console.log(checkInventory("apples"));
Leave a Comment