I tried to code about JSON types but I got stuck how to change array from JSON into HTML.
This is what I've got from JSON:
{
"data": {
"posts": {
"edges": [
{
"node": {
"title": "Hello World"
}
},
{
"node": {
"title": "How to do Online Payment"
}
},
{
"node": {
"title": "What is good programme language?"
}
}
]
}
}
}
Expected output: Hello World How to do Online Payment What is good programme language?
HTML tag:
<div>
<h1>Hello World</h1>
<h1>How to do Online Payment</h1>
<h1>What is good programme language?</h1>
</div>
Thanks for the help.