I have an array of objects and want to remove all the objects that have a specific key value.
the Array looks something like this:
var myArray = [{name: "a", value: "b"}, {name: "a", value: "d"}, {name: "f", value: "r"}, {name: "g", value: "q"}];
In this case, I would like to have all objects with the name a
removed form the array.
Help would be appreciated. Thanks!