I have the following array:
KHWArray = [{"date":"23 Jan 14","hours":12,"mins":"31","score":22},
{"date":"23 Jan 14","hours":12,"mins":"36","score":22},
{"date":"23 Jan 14","hours":12,"mins":"44","score":22}
]
How can I go about deleting the hours and mins sections from all arrays so I am just left with date and score.
I have looked into splicing and delete but can't seem to make this work