References

Array.filter()

Leírás

A filter függvény az egy több elemeinek megszűrésére való.

Szintaxis

filter(callbackFn)
filter(callbackFn, thisArg)

Példa

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"]
in this article
back to top