Hello, I have this problem to print this json
{
"delegacion":"\u00c1lvaro Obreg\u00f3n",
"estado":"Ciudad de M\u00e9xico",
"region":"Centro",
"colonias":[
{"idcp":"27886","asentamiento":"Ampliaci\u00f3n El Capul\u00edn"},
{"idcp":"27887","asentamiento":"Liberales de 1857"},
{"idcp":"27888","asentamiento":"Bel\u00e9m de las Flores"},
{"idcp":"27889","asentamiento":"El Capul\u00edn"}
]
}
I already managed to print the first
"delegacion":"\u00c1lvaro Obreg\u00f3n",
"estado":"Ciudad de M\u00e9xico",
"region":"Centro",
console.log(data.idcp);
but when I want to access the others to put them in a select it marks me error and it stays loading the page
this obkjeto is the one that I want to put inside a select
"colonias":[
{"idcp":"27886","asentamiento":"Ampliaci\u00f3n El Capul\u00edn"},
{"idcp":"27887","asentamiento":"Liberales de 1857"},
{"idcp":"27888","asentamiento":"Bel\u00e9m de las Flores"},
{"idcp":"27889","asentamiento":"El Capul\u00edn"}
]
help for fa