filter() 함수는 하나의 지정된 Array에서 filter()함수에 true인 결과값만 추출해 내는 기능을 하는 함수다.
const array1 = [-1,0,1]; array1.filter((num) => num > 0); //[1]