We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08f7a95 commit 9a9266aCopy full SHA for 9a9266a
Roadmap/20 - PETICIONES HTTP/javascript/edalmava.js
@@ -17,7 +17,7 @@ async function buscarPokemon(name) {
17
const respuesta = await fetch('https://pokeapi.co/api/v2/pokemon/' + name)
18
if (respuesta.ok) {
19
const datos = await respuesta.json()
20
- //console.log(datos)
+
21
const nombre = datos.name
22
const id = datos.id
23
const peso = datos.weight
0 commit comments