Answers for "Use the same JSON object from the previous question and write down JS code to parse the object and show the names of people who are older than 20 years."

0

Use the same JSON object from the previous question and write down JS code to parse the object and show the names of people who are older than 20 years.

[
  {
    "name": "Jane Doe",
    "favorite-game": "Stardew Valley",
    "subscriber": false
  },
  {
    "name": "John Doe",
    "favorite-game": "Dragon Quest XI",
    "subscriber": true
  }
]
Posted by: Guest on July-19-2021

Code answers related to "Use the same JSON object from the previous question and write down JS code to parse the object and show the names of people who are older than 20 years."

Code answers related to "Javascript"

Browse Popular Code Answers by Language