Coloriez
Coloriez

Reputation: 73

Parsing multi-array JSON? (JavaScript)

How would I parse this multi-level JSON to get title?

{"query":{"search":[{"ns":0,"title":"Getfenv"}]}}

Upvotes: 0

Views: 40

Answers (1)

abs
abs

Reputation: 801

obj.query.search[0].title

you can try out this

Upvotes: 1

Related Questions