filter()를 이용하여 배열의 원소에서 height 보다 큰 원소만 추려 length를 리턴
<script> function solution(array, height) { return array.filter((e) => e > height).length; } </script>