We're a place where coders share, stay up-to-date and grow their careers.
Also a simple "Destroyer" implementation:
function destroyer(arr, ...params) { return arr.filter(el=>!params.includes(el)); }
Also a simple "Destroyer" implementation: