I have an array which looks like:
var standardsList = [
{"Grade": "Math K", "Domain": "Counting & Cardinality", "$$hashKey": "08932"},
{"Grade": "Math K", "Domain": "Counting & Cardinality", "$$hashKey": "07932"},
{"Grade": "Math K", "Domain": "Counting & Cardinality", "$$hashKey": "08332"},
{"Grade": "Math K", "Domain": "Counting & Cardinality", "$$hashKey": "08132"},
{"Grade": "Math K", "Domain": "Geometry", "$$hashKey": "08902"} ];
This $$hashKey
attribute is added by angularJS by default
I want to remove this $$hashkey
attribute with value from all objects of above array.
Any pointers anyone ??