Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. </head>
  5. <body>
  6. <script>
  7. var jsonData = `{"catalog":
  8. [{
  9. "id":"bk101",
  10. "author":"Thurman Paula",
  11. "title":"Splish Splash",
  12. "genre":"Romance",
  13. "price":4.95,
  14. "publish_date":"2000-11-02",
  15. "description":"A deep sea diver finds true love twenty thousand leagues beneath the sea."
  16. },
  17. {
  18. "id":"bk102",
  19. "author":"Ralls Kim",
  20. "title":"Midnight Rain",
  21. "genre":"Fantasy",
  22. "price":5.95,
  23. "publish_date":"2000-12-16",
  24. "description":"A former architect battles corporate zombies an evil sorceress, and her own childhood to become queen of the world."
  25. },
  26. {
  27. "id":"bk103",
  28. "author":"Corets Eva",
  29. "title":"Maeve Ascendant",
  30. "genre":"Fantasy",
  31. "price":5.95,
  32. "publish_date":"2000-11-17",
  33. "description":"After the collapse of a nanotechnology society in England, the young survivors lay the foundation for a new society."
  34. }], "version": 1.05
  35. }`;
  36.  
  37. //alert("I dont know");
  38. var obj = JSON.parse(jsonData);
  39. console.log(obj.catalog);
  40. </script>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement