Untitled
unknown
plain_text
a month ago
294 B
4
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