• 코드:
​x
 
1
<!DOCTYPE html>
2
<html lang="ko">
3
​
4
<head>
5
    <meta charset="UTF-8">
6
    <title>JavaScript Array Object</title>
7
</head>
8
​
9
<body>
10
​
11
    <h1>filter() 메소드</h1>
12
​
13
    <script>
14
        var arr = [-10, 5, 100, -20, 40];
15
        function compareValue(value) {
16
            return value < 10;
17
        }
18
​
19
        var lessTen = arr.filter(compareValue);
20
        document.write(lessTen);        // [-10,5,-20]
21
    </script>
22
    
23
</body>
24
​
25
</html>