Skip to content

Commit 6dcbeeb

Browse files
authored
Typo fix
1 parent a2e6ebe commit 6dcbeeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/02-first-steps/06-type-conversions/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ alert( Number(true) ); // 1
7777
alert( Number(false) ); // 0
7878
```
7979

80-
Ten en cuenta que `null` y `undefined` se de distinta manera aquí: `null` se convierte en `0` mientras que `undefined` se convierte en `NaN`.
80+
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`.
8181

8282
````smart header="Adición '+' concatena strings"
8383
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.

0 commit comments

Comments
 (0)