https://programmers.co.kr/learn/courses/30/lessons/12906
👉🏻arr.filter(n => n>-1);: arr의 요소 중 -1보다 큰 요소만 가진 새로운 배열을 반환해줌
arr.filter(n => n>-1);