diff --git a/guide/spanish/javascript/if-else-statement/index.md b/guide/spanish/javascript/if-else-statement/index.md index 6b06ad9c44..c7d584a5e6 100644 --- a/guide/spanish/javascript/if-else-statement/index.md +++ b/guide/spanish/javascript/if-else-statement/index.md @@ -48,7 +48,7 @@ if (condition) { **Usando** `if...else` : ```javascript - // If x=5 z=7 and q=42. If x is not 5 then z=19. + // Si x=5 --> z=7 y q=42. Si x no es igual a 5 --> z=19. if (x == 5) { z = 7; q = 42 @@ -70,4 +70,4 @@ if (x < 10) return "Invalid number"; } -``` \ No newline at end of file +```