display values of a json response in javascript [closed]

I have this JSON response

[
  {"1":"Planta 2"},
  {"1":"Planta 4, Oficina 2"},
  {"1":"Planta 5"}
]

How can I run through and display each of the values?
I would like to be able to obtain each value as follows

Planta 2
Planta 4, Oficina 2
Planta 5