Easy
You're building a social media dashboard that needs to process user engagement data. Given an array of post interactions, which method chain would correctly calculate the average engagement rate (likes + comments / total posts) for posts with more than 100 views?
1const postMetrics = [2 { id: 1, likes: 45, comments: 12, views: 102 },3 { id: 2, likes: 80, comments: 5, views: 98 },4 { id: 3, likes: 32, comments: 24, views: 215 },5 { id: 4, likes: 60, comments: 8, views: 134 },6 { id: 5, likes: 25, comments: 3, views: 88 }7];