Filters items from a collection passing the filter condition
collectionFilter(collection, filter [, parallel] [, maxThreads])
→ returns any
20
coll = [{
id: 0,
type: 'mail'
},{
id: 1,
type: 'mail'
},{
id: 2,
type: 'comment'
}];
onlyMails = collectionFilter(coll,function(item) {
return item.type is 'mail';
});
for(mail in onlyMails) {
writeOutput(mail.id&', ');
}
Expected Result: 0, 1,
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.