LeetCodeNumber of Employees Who Met the TargetNumber of Employees Who Met the TargetEasyArraySolution export function numberOfEmployeesWhoMetTarget(hours: number[], target: number): number { return hours.filter((hour) => target <= hour).length; }LeetCodeNumber of Employees Who Met the Targethttps://leetcode.com/problems/number-of-employees-who-met-the-target