Last active
July 7, 2020 18:11
-
-
Save agustinpfs/68dcc26379e6e2e9365acc44a4ab87a3 to your computer and use it in GitHub Desktop.
Javascript básico. Condicionales. Declaración if.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Sintaxis: | |
if (condicion) { | |
// código que se ejecuta si la condición es verdadera | |
} | |
//Ejemplo: | |
function miFuncion(edad) { | |
console.log("Bienvenido"); | |
if (edad >= 18) { | |
console.log("Puede pasar"); | |
} | |
} | |
miFuncion(17) // Bienvenido | |
miFuncion(18) // Bienvenido Puede pasar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment