Untitled

Anonymous
plain_text
02/04/2025 12:29 PM
392 B
16
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"));
Editor is loading...
Leave a Comment