Puedes recorrer el array y filtrar cada elemento:
Código Javascript
:
Ver originalString.prototype.endsWith = function(str) { return this.match(str + "$"); };
for (i = 0; i < mi_imagen.length; i++) {
if (mi_imagen[i].endsWith(".gif")) {
// Termina con .gif
}
}