javascript recorrer json

Solutions on MaxInterview for javascript recorrer json by the best coders in the world

showing results for - "javascript recorrer json"
Claudio
02 Oct 2017
1// JSON con distintos valores para utilizar en la demo
2var json = {'valor1': 1, 'valor2': [1, 2, 3, 4], 'valor3': '3'};
3	
4// Obteniendo todas las claves del JSON
5for (var clave in json){
6  // Controlando que json realmente tenga esa propiedad
7  if (json.hasOwnProperty(clave)) {
8    // Mostrando en pantalla la clave junto a su valor
9    alert("La clave es " + clave+ " y el valor es " + json[clave]);
10  }
11}