-
Notifications
You must be signed in to change notification settings - Fork 0
/
personaje2.js
35 lines (34 loc) · 1.17 KB
/
personaje2.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
const container = document.getElementById("container");
function crearUsuario(evento){
console.log(evento);
}
function pintarTablaParaListar(usuarios) {
if (usuarios && usuarios.length) {
let htmlFinal = "";
htmlFinal = `<table>
<thead>
<tr>
<th>nombre</th>
</tr>
</thead>`;
htmlFinal += "<tbody>";
usuarios.forEach(usuario => {
htmlFinal += `<tr>
<td>${usuario.nombre}</td>
</tr>`;
});
htmlFinal += "</tbody>";
htmlFinal += "</table>";
return htmlFinal;
} else {
return "<h2>no hay personajes para mostrar</h2>";
}
}
const listarUsuarios = async () => {
const response = await fetch("https://bootcamp-dia-3-knpy6cukq.now.sh/usuarios");
const myJson = await response.json();
const usuarios = myJson;
container.innerHTML = pintarTablaParaListar(usuarios);
//console.log(personajes);
};
listarUsuarios();