Challenge: Club Entry System

This challenge will test your skills in implementing function composition in JavaScript.

Problem statement #

A security guard at the club needs to ensure that only customers over or equal to the age of 18 enter the club.

Here customers is an array of objects such that each customer object has an age and name property.

The guard needs the names of the customers who can enter the ...