Derecho internacional
*If(condición ) valida la condición {
*…
*}
Var mostrar Mensaje=true;
If(mostrar Mensaje){ alert(“Hola Mundo);
}
http://www.w3schools.com/js/tryit.asp?filename=tryjs_randomlink
<html>
<script type="text/javascript"> var mostrarMensaje=true; if(mostrarMensaje){ alert("Hola Mundo");
}
</script>
<body>
</body>
</html>
http://www.w3schools.com/js/tryit.asp?filename=tryjs_randomlink
<html>
<script type="text/javascript"> var mostrarMensaje=true; if(mostrarMensaje==true){ alert("Hola Mundo");
}
</script>
<body>
</body>
</html>
http://www.w3schools.com/js/tryit.asp?filename=tryjs_randomlink
<html>
<script …ver más…
primero=array.unshift(0);
//ahora array=[0,1,2,3] alert(primero); </script>
</body>
</html>
REVERSE
<html>
<body>
<script type="text/javascript"> var array =[1,2,3]; var b=array.reverse();
//ahora array=[3,2,1] alert(b); </script>
</body>
</html>
FUNCIONES JAVASCRIPT
Function nombrefuncion( ){
…
}
() Estos parámetros se llaman argumentos
Código de suma
<html>
<script type="text/javascript"> function suma_y_muestra(numero1,numero2) { var resultado = numero1 + numero2; alert("El resultado es " + resultado);
}
</script>
<body>
<script>
var numero1 = 3; var numero2 = 5; suma_y_muestra(numero1,numero2) </script>
</body>
</html>
VALORES DE RETORNO (división)
<html>
<script type="text/javascript"> function dividir(numero1,numero2) { var resultado = numero1 /numero2; alert("El resultado es " + resultado);
}
</script>
<body>
<script>
var numero1 = 0 var numero2 = 1 dividir(numero2,numero1) </script>
</body>
</html>
Ejemplo 1
<html>
<script type="text/javascript"> function calculaPrecioTotal(precio) { var impuestos = 1.16; var gastosEnvio = 10; var precioTotal = ( precio * impuestos ) + gastosEnvio; return(precioTotal); }
</script>
<body>
<script>
var x = calculaPrecioTotal(23.34); alert(x); </script>