Created
December 12, 2012 10:49
-
-
Save Sandrucola/4266855 to your computer and use it in GitHub Desktop.
Examen 12/12/!2
Sandra Munuera y Laura Caastro
This file contains 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
//Crear simulador numérico de presentaciones | |
var a = new Array(); | |
var n= 20; | |
var posicion = 0; | |
// Crea una lista de diapositivas | |
function lista(n){ | |
for (i=0; i<= n; i++){ | |
a[i]=i; | |
console.log("Diapositiva" + i) | |
} | |
} | |
//Implementar siguiente y anterior. Creamos dos funciones una para siguiente y otra para anterior. | |
// tenemos en cuenta que en la diaposiiva 0 se podrá avanazar pero no ir para atrás. Y en la última al revés. | |
function siguiente(){ | |
if (i>=0&&i<n){ | |
posicion=posicion+1; | |
console.log("Diapositiva") | |
} | |
} | |
function anterior(){ | |
if (i>0&&i<=n){ | |
posicion=posicion-1; | |
console.log("Diapositiva") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment