function arrayContains(elemento, array) { for(i=0; i<array.length; i++) { if (array[i] == elemento) return true; } return false; }