-1
Eae guys wanted to know how to pick up two objects and put everything together in a third object I speak two objects because the angular is saying that they are objects and not arrays.
var obj1 = ['1', '02', '5'];
var obj2 = ['ana', 'fia', 'tina'];
vm.obj3 = [{codigo: '', nome:''}];
//deixando assim
vm.obj3 = [{
{codigo: '1', nome: 'ana'},
{codigo: '02', nome: 'fia'},
{codigo: '5', nome: 'tina'}
}];
vlw guy helped a lot
– user114808