1 2 3 4 5 6 |
fetch('https://www.jesusninoc.com/rutinas2.json') .then((results) => results.json()) .then((resolve) => { datos = resolve; datos.forEach(element => { console.log(element.rutina)}); }); |
