Replies: 2 comments 2 replies
-
Hola. Mira, creo q la comparación de strings está bien. Yo lo hice igual y me generaba un fallo. Lo arreglé así y pasó: ls1= str1.lengt; if (ls1 === ls2) { |
Beta Was this translation helpful? Give feedback.
2 replies
-
Genial. Me alegra haber podido ayudarte.
El mié., 16 dic. 2020 16:15, Mauricio Pardo Varon <notifications@github.com>
escribió:
… Hola Mauricio, muchisimas gracias! ya pasó sin problema.
Saludos!
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#23 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHT35ZYTYQOGDVH5CNAW42DSVEBMJANCNFSM4U4Y4IVA>
.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hola, estoy realizando el homework de la parte JS-I pero he quedado atascado en dos errores que no he podido solucionar.
function tienenMismaLongitud(str1, str2) {
// Devuelve "true" si las dos strings tienen la misma longitud
// De lo contrario, devuelve "false"
// Tu código:
if (str1.length() == str2.length()){
return true;
}
return false;
}
function obtenerSaludo(nombre) {
// Toma la string "nombre" y concatena otras string en la cadena para que tome la siguiente forma:
// "Martin" -> "Hola Martin!"
// Tu código:
return ('Hola '+ nombre + '!');
}
No veo el error en ninguno de los dos. Si pudieran ayudarme, les agradecería de verdad.
saludos.
Beta Was this translation helpful? Give feedback.
All reactions