From 6dcbeeb37d9d07da1dd18e4b028987198f4b36fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alvaro=20Fla=C3=B1o?= Date: Thu, 18 Jul 2019 21:49:26 -0400 Subject: [PATCH] Typo fix --- 1-js/02-first-steps/06-type-conversions/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/06-type-conversions/article.md b/1-js/02-first-steps/06-type-conversions/article.md index d0a807807..824136c88 100644 --- a/1-js/02-first-steps/06-type-conversions/article.md +++ b/1-js/02-first-steps/06-type-conversions/article.md @@ -77,7 +77,7 @@ alert( Number(true) ); // 1 alert( Number(false) ); // 0 ``` -Ten en cuenta que `null` y `undefined` se de distinta manera aquí: `null` se convierte en `0` mientras que `undefined` se convierte en `NaN`. +Ten en cuenta que `null` y `undefined` se comportan de distinta manera aquí: `null` se convierte en `0` mientras que `undefined` se convierte en `NaN`. ````smart header="Adición '+' concatena strings" Casi todas las operaciones matemáticas convierten valores a números. Una excepción notable es la suma `+`. Si uno de los valores sumados es un string, el otro valor es convertido a string.