Created
March 14, 2017 16:29
-
-
Save ivandevp/dc049439d49c6e108f6486ca67ffa969 to your computer and use it in GitHub Desktop.
Función revertirTexto con errores lógicos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Corrige el siguiente código de tal forma que obtengas el resultado esperado, | |
* usa las técnicas de depuración que conoces para encontrar y solucionar el error. | |
*/ | |
var revertirTexto = function (texto) { | |
var textoInvertido = ""; | |
var longitud = texto.length; | |
for (var i = longitud; i > 0; i--) { | |
textoInvertido += texto.charAt(i); | |
} | |
return textoInvertido; | |
}; | |
var resultado = revertirTexto("Laboratoria"); | |
// Resultado actual: airotaroba | |
// Resultado esperado: airotarobaL | |
console.log(resultado); | |
/*** HINT: Son 2 cambios para que quede correctamente ***/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment