どのコードも構文的に正しくないため、実際にやろうとしていることは少しあいまいです。以下のコードを使用して、あなたが何を意味したかを推測することしかできません。
//you have an array of objects, where each has a function
var objArray = [
{
objFunc: function(){
return 'objArray #0 objFunc';
}
},
{
objFunc: function(){
return 'objArray #1 objFunc';
}
},
{
objFunc: function(){
return 'objArray #2 objFunc';
}
}
];
//you need to call each function of all objects
//in the array via jQuery "each" method.
$.each(objArray,
function(idx, itm){
//"itm" is the array item, which is the object
var a = itm.objFunc(); //call it
//log the result. see web browser Console
console.log(a);
}
);