A filter függvény az egy több elemeinek megszűrésére való.
filter
filter(callbackFn) filter(callbackFn, thisArg)
const words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present'] const result = words.filter((word) => word.length > 6) console.log(result) // Expected output: Array ["exuberant", "destruction", "present"]