var a = [{'id':1,'name':'James','age':11}];
a = a.filter(function( obj,i ) {
//return obj != 'age';
});
filter will create a new array, but how to splice away the age property key? Didn't use jquery, can't use $.grep in this case. and won't use delete because it's not really delete the key but leave an empty slot.