Architecture
Refactoring
Agile
Delivery
Microservices
Data
Testing
DSL
About
Books
FAQ
Videos
Content Index
Board Games
Photography
Insights
Careers
Radar
RSS
Mastodon
LinkedIn
X (Twitter)
BGG
How do I access the web edition?
const names = []; for (const i of input) { if (i.job === “programmer”) names.push(i.name); }
image/svg+xml
const names = input .filter(i => i.job === “programmer”) .map(i => i.name) ;