JavaScript에서 일반적으로 사용되는 배열 메서드

hzc
풀어 주다: 2020-06-04 13:35:28
앞으로
2669명이 탐색했습니다.

some() 메소드

이 메소드는 배열의 하나 이상의 요소가 매개변수 함수로 확인된 조건을 충족하는지 확인합니다.

<script>
// JavaScript to illustrate 
// lastIndexOf() method 
function isGreaterThan5(element, index, array) {  
    return element > 5;  
}
function func() {
    // Original array  
    var array = [2, 5, 8, 1, 4];
    // Checking for condition in array  
    var value = array.some(isGreaterThan5);
    document.write(value);  
}
func();  
</script>
로그인 후 복사

출력:

true
로그인 후 복사
로그인 후 복사
로그인 후 복사

reduce() 메서드

JavaScript의 배열 Reduce() 메서드는 배열을 단일 값으로 줄이는 데 사용되며 배열의 각 값(왼쪽에서 오른쪽으로)에 대해 제공을 수행하고 반환 값 함수. 함수는 누산기에 저장됩니다.

<script>
// Original array 
var numbers = [88, 50, 25, 10];
// Performing reduce method 
var sub = numbers.reduce(geeks);
function geeks(total, num) { 
    return total - num; 
}
document.write(sub) 
</script>
로그인 후 복사

출력:

3
로그인 후 복사

map() 메서드

JavaScript의 map() 메서드는 상위 배열에 있는 각 요소에 대해 특정 함수를 호출하여 배열을 생성합니다. 이는 돌연변이가 아닌 방법입니다. 일반적으로 map() 메서드는 배열을 반복하고 배열의 각 요소에 대해 함수를 호출하는 데 사용됩니다.

<script> // Original array 
var numbers = [4, 9, 16, 25]; 
// Performing map method 
var sub = numbers.map(geeks); 
function geeks() {     
return numbers.map(Math.sqrt); 
} 
document.write(sub)
로그인 후 복사

출력:

2 3 4 5
로그인 후 복사

every() 메서드

이 메서드는 배열의 모든 요소가 인수로 전달된 함수에 의해 주어진 조건을 만족하는지 확인합니다.

<script>  // JavaScript code for every() function  
function ispositive(element, index, array) {      
return element > 0;  }  function func() {      
var arr = [ 11, 89, 23, 7, 98 ];      
// Check for positive number      
var value = arr.every(ispositive);      
document.write(value);  }  
func();  
</script>
로그인 후 복사

출력:

true
로그인 후 복사
로그인 후 복사
로그인 후 복사

flat() 메서드

이 메서드는 여러 배열을 포함하는 새 배열을 만듭니다. 기본적으로 여러 배열을 포함하는 배열에서 간단한 배열을 만듭니다.

<script>
//Original array 
var arr = [ [11, 89], [23, 7], 98 ];
// Performing flat method 
var geeks = arr.flat();
document.write(geeks) 
</script>
로그인 후 복사

출력:

11,89,23,7,98
로그인 후 복사

flatMap() 메서드

이 메서드는 입력 배열 요소를 새 배열로 평면화하는 데 사용됩니다. 이 방법은 먼저 map 함수를 사용하여 각 요소를 매핑한 다음 입력 배열 요소를 새 배열로 평면화합니다.

<script>const myAwesomeArray = [[1], [2], [3], [4], [5]]var geeks = myAwesomeArray.flatMap(arr => arr * 10) console.log(geeks);
로그인 후 복사

출력:

10、20、30、40、50
로그인 후 복사

filter() 메소드

이 메소드는 주어진 배열에서 매개변수 함수에 의해 설정된 조건을 충족하는 주어진 배열의 요소로만 구성된 새 배열을 만드는 데 사용됩니다.

<script>
function isPositive(value) {  
    return value > 0;  
}
function func() {  
    var filtered = [112, 52, 0, -1, 944] 
    .filter(isPositive);  
    document.write(filtered);  
}
func();  
</script>
로그인 후 복사

출력:

112、52、944
로그인 후 복사

findindex() 메서드

이 메서드는 제공된 테스트 함수를 만족하는 주어진 배열의 첫 번째 요소의 인덱스를 반환합니다. 그렇지 않으면 -1이 반환됩니다.

<script>
var array = [ 10, 20, 30, 110, 60 ];
function finding_index(element) {  
    return element > 25; 
}
document.write(array.findIndex(finding_index));  
</script>
로그인 후 복사

출력:

2
로그인 후 복사

find()方法

此方法用于获取满足所提供条件的数组中第一个元素的值。它检查数组的所有元素,以及第一个满足条件的要打印的元素。

<script>
// Input array contain some elements.  
var array = [10, 20, 30, 40, 50];
// Function (return element > 10).  
var found = array.find(function(element) {  
    return element > 20;  
});
// Printing desired values.  
document.write(found);  
</script>
로그인 후 복사

输出:

30
로그인 후 복사

fill()方法

此方法用于使用给定的静态值填充数组。该值可以用于填充整个数组,也可以用于填充数组的一部分。

<script>
// JavaScript code for fill() function  
function func() {
    var arr = [1, 23, 46, 58];
    // Here value = 87, start index = 1 and  
    // and last index = 3  
    arr.fill(87, 1, 3);  
    document.write(arr);  
}
func();  
</script>
로그인 후 복사

输出:

1,87,87,58
로그인 후 복사

forEach()方法

该方法为数组的每个元素调用一次提供的函数。提供的函数可以对给定数组的元素执行任何类型的操作。

<script>  function func() {      
// Original array      
const items = [1, 29, 47];      
const copy = [];      
items.forEach(function(item){          
copy.push(item*item);      });      
document.write(copy);  }  
func();  
<script>
로그인 후 복사

输出:

1,841,2209
로그인 후 복사

sort()方法

此方法用于对数组进行排序。数组可以是任何类型,例如字符串,数字,字符等。

<script>
// Original array 
var numbers = [88, 50, 25, 10];
// Performing sort method 
var sub = numbers.sort(geeks);
function geeks(a, b) { 
    return a - b; 
}
document.write(sub) 
</script>
로그인 후 복사

输出:

10、25、50、88
로그인 후 복사

concat()方法

此方法用于将两个或多个数组合并在一起。此函数不会更改作为参数传递的原始数组。

<script>
// JavaScript code for concat() function  
function func() {  
    var num1 = [11, 12, 13],  
        num2 = [14, 15, 16],  
        num3 = [17, 18, 19];
    document.write(num1.concat(num2, num3));  
}  
func();  
</script>
로그인 후 복사

输出:

11,12,13,14,15,15,16,17,18,19
로그인 후 복사

include()方法

此方法用于知道数组中是否存在特定元素,因此,它返回true或false,即,如果该元素存在,则返回true,否则返回false。

<script>
    // Taking input as an array A  
    // having some elements.  
    var A = [ 1, 2, 3, 4, 5 ];
    // Include() function is called to  
    // test whether the searching element  
    // is present in given array or not.  
    a = A.includes(2)
    // Printing result of function.  
    document.write(a);  
</script>
로그인 후 복사

输出:

true
로그인 후 복사
로그인 후 복사
로그인 후 복사

reverse()方法

此方法用于数组的就地反转。数组的第一个元素变为最后一个元素,反之亦然。

<script>  function func() {      
//Original Array      
var arr = [34, 234, 567, 4];      
document.write("Original array: " + arr);      
//Reversed array      
var new_arr = arr.reverse();      
document.write("<br>Newly reversed array: ");      
document.write(new_arr);  }  
func();  
<script>
로그인 후 복사

输出:

原始数组:34、234、567、4新反向阵列:4、567、234、34
로그인 후 복사

推荐教程:《JS教程

위 내용은 JavaScript에서 일반적으로 사용되는 배열 메서드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
js
원천:csdn.net
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!