I have an object like this
a: 25.165562913907287
b: 25.274725274725274
c: 36.633663366336634
d: 2.6128266033254155
e: 55.52147239263804
f: 78.52941176470588
g: "xxx"
id: 6
now I want to use angular js to show a table with header from 'a' to 'g', exclude the field 'id', and also show all value from 'a' to 'g', exclude field id, neither How can I achieve that ?
****Note**: I don't want to filter by value of the property but the property itself, what I did was a filter return empty string if the field was equal 'id', and looking for a better solution