I need to get the data coming from the object.
$scope.salvarHabilidades = function(pro){
var valores = pro.filter(function(o,i){
return o.habilidades == true;
});
console.log(valores);
var dados = [];
for(var i = 0; i <= valores.length; i++){
dados.push(valores[i].idhabilidade);
}
}