From 7419cc3e526e984c748474fb0eb57e2305ce596e Mon Sep 17 00:00:00 2001 From: Aingeru Date: Sat, 24 Nov 2018 22:25:53 +0100 Subject: [PATCH] Comentario del ejemplo 'if...else' traducido (#21858) --- guide/spanish/javascript/if-else-statement/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +```