Advertisement
saasbook

json_example.js

Sep 15th, 2014
389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. var potatoReview =
  2. {
  3. "potatoes": 5,
  4. "reviewer": "armandofox",
  5. "movie": {
  6. "title": "Casablanca",
  7. "description": "Casablanca is a classic and iconic film starring ...",
  8. "rating": "PG",
  9. "release_date": "1942-11-26T07:00:00Z"
  10. }
  11. };
  12. potatoReview['potatoes'] // => 5
  13. potatoReview['movie'].title // => "Casablanca"
  14. potatoReview.movie.title // => "Casablanca"
  15. potatoReview['movie']['title'] // => "Casablanca"
  16. potatoReview['blah'] // => undefined
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement