Skip to content

Commit

Permalink
Update what-is-javascript-learn-to-code-in-javascript.es.md
Browse files Browse the repository at this point in the history
hiiii, edite la linea 206 y 207, estaban invertidas
  • Loading branch information
valeriaasalcedoo authored Mar 6, 2024
1 parent a22764e commit 0838986
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ Por ejemplo, si quiero un computador para dar dulces solo a niños mayores de 13
|No Igual a |!= |Es 5 != 5? False!<br>Es 5 != '5'? False!<br>Es 1 != 'Hello' True! |
|Mayor que |> |Es 5 > 5? False!<br>Es 6 > 3? True! |
|Menos que |< |Es 6 < 12? True |
|Mayor o igual |>= |Es 6 <= 6? True<br>Es 3 <= 6? True |
|Menor o igual |<= |Tienes la idea 🙂 |
|Menor o igual |<= |Es 6 <= 6? True<br>Es 3 <= 6? True |
|Mayor o igual |>= |Tienes la idea 🙂 |

Para crear operaciones realmente útiles, puedes combinar varias operaciones en la misma pregunta usando AND, OR y NOT (y, o y no respectivamente).

Expand Down

0 comments on commit 0838986

Please # to comment.