I created an array like below:
arrayObject = [{one: "1", two: "2", three: "3", four: "4", five: "5"},
{one: "1", two: "2", three: "3", four: "4", five: "5"}];
How can I get/filter that array to had arrayObject only with "one", "two" and "five" element like below:
arrayObject = [{one: "1", two: "2", five: "5"},
{one: "1", two: "2", five: "5"}];
What's the best way to do it ?