a / subir /Curso de Fundamentos de JavaScript /06-Asincronía en JavaScript /03-app_5bc0e7ac-1f29-42b8-81f4-9ce6af240d4a.js
| fetch("https://jsonplaceholder.typicode.com/posts") | |
| .then((response) => response.json()) | |
| .then((data) => console.log(data)); | |