You don't actually want to "filter" per say, as in depending on a condition removing elements from an array.
You want to map over your array and then for each object (item) composing this array you want to remove the description property
You can easily achieve this by using the .map
method available for Arrays
The .map method works as follows (from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map) :
The map() method creates a new array populated with the results of calling a provided function on every element in the calling array.
// For each object, return a new one without the description property
const result = yourArray.map(obj => {
const { name, description, id } = obj;
return { name, id };
})