Skip to content

Commit

Permalink
Update article.md
Browse files Browse the repository at this point in the history
Mejoras propuestas por @tscandalitta
  • Loading branch information
tikoflano authored Jul 19, 2019
1 parent 844b8d7 commit a2e6ebe
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 @@ -89,7 +89,7 @@ alert( 1 + '2' ); // '12' (string a la derecha)
alert( '1' + 2 ); // '12' (string a la izqueirda)
```
Esto ocurre solo si al menos uno de los operadores es un string. Sino, los valores son convertidos a número.
Esto ocurre solo si al menos uno de los argumentos es un string, en caso contario los valores son convertidos a número.
````

## ToBoolean
Expand Down

0 comments on commit a2e6ebe

Please sign in to comment.