Agrego una solución más al desafío y desde luego también me encantaría sumarme.
Código Javascript
:
Ver originalArray.prototype.unique=function(a){
return function(){return this.filter(a)}}(function(a,b,c){return c.indexOf(a,b+1)<0
});
function getThirthMinorValue(data){
if(data.length != 0){
var unique=data.unique();
unique.sort();
}else{
return false;
}
return unique[2];
}
var collection=[5,2,9,10,8,2,5];
var a=getThirthMinorValue(collection);
alert(a);
Saludo a todos y feliz año nuevo!