Currently , in mycode console.log(JSON.stringify(response, null, 4))
is displaying the result as
[
{ title: "title of the page",
Link: "http: www.google.com",
snippet:"this is google page"
},
{ title: "title of the second page",
Link: "http: www.yahoo.com",
snippet:"this is yahoo page"
},
{ title: "title of the third page",
Link: "http: www.drive.com",
snippet:"this is drive page"
}
]
Now i need to remove the "[" and "{" "]" "}" in json response and also trim the "title,link,snippet".
The exact result i need is
"title of the page",
"http: www.google.com",
"this is google page"
"title of second page",
"http: www.yahoo.com",
"this is yahoo page"
Please suggest me , how to manipulate this JSON.stringify(response, null, 4))
to get the above result.