Skip to content

Commit

Permalink
Update info-gatos.js
Browse files Browse the repository at this point in the history
Corrección en la inicialización de variable local color en la funcion obtener color para que no devuelva cadena vacia que genera errores mas adelante.
  • Loading branch information
NicoPauer authored Aug 20, 2023
1 parent 6719a76 commit 4d8b57e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion info-gatos.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function obtenerColor(nombre)
/* devuelve el codigo hexadecimal del
color el nombre del color que recibe como parametro
si ya está en hexadecimal lo devuelve sino lo traduce */
let color = nombre;
let color = "#000000";
// Convierto nombre a minuscula
let nomb = nombre.toLowerCase();
if (nomb[0] === "#")
Expand Down

0 comments on commit 4d8b57e

Please sign in to comment.