ivana_andreevska

JSON

Jan 16th, 2022
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let companies=
  2.     `[
  3.         {
  4.             "name" : "Big Corporation" ,
  5.             "numberOfEmpl" : 10000 ,
  6.             "ceo" : "Mary" ,
  7.             "rating" : 3.6
  8.         },
  9.         {
  10.             "name" : "Small Startup" ,
  11.             "numberOfEmpl" : 3 ,
  12.             "ceo" : null ,
  13.             "rating" : 4.3
  14.         }
  15.     ]`
  16. console.log(JSON.parse(companies))
  17. console.log(JSON.parse(companies)[0].name)
  18. console.log(JSON.parse(companies)[1].name)
  19. console.log(JSON.parse(companies)[0].ceo)
  20. console.log(JSON.parse(companies)[1].ceo)
  21. console.log(JSON.parse(companies)[0].rating)
  22. console.log(JSON.parse(companies)[1].rating)
Advertisement
Add Comment
Please, Sign In to add comment