Guest User

Untitled

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