Skip to content

Commit 9a9266a

Browse files
committed
#20 - javascript
1 parent 08f7a95 commit 9a9266a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Roadmap/20 - PETICIONES HTTP/javascript/edalmava.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async function buscarPokemon(name) {
1717
const respuesta = await fetch('https://pokeapi.co/api/v2/pokemon/' + name)
1818
if (respuesta.ok) {
1919
const datos = await respuesta.json()
20-
//console.log(datos)
20+
2121
const nombre = datos.name
2222
const id = datos.id
2323
const peso = datos.weight

0 commit comments

Comments
 (0)