Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tikoflano authored Jul 19, 2019
1 parent a2e6ebe commit 6dcbeeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 1-js/02-first-steps/06-type-conversions/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 6dcbeeb

Please sign in to comment.