Untitled
unknown
plain_text
9 months ago
294 B
6
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