Guest User

Untitled

a guest
Jul 16th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. let foods = {
  2. apples: 25,
  3. oranges: 32,
  4. plums: 28,
  5. bananas: 13,
  6. grapes: 35,
  7. strawberries: 27
  8. };
  9. function checkInventory(scannedItem) {
  10. return foods[scannedItem]
  11. }
  12. console.log(checkInventory("apples"));
Add Comment
Please, Sign In to add comment