fill()

차노·2023년 8월 19일
0

JS

목록 보기
75/96

The fill() method in JavaScript is used to fill all the elements of an array with a specified static value.

자바스크립트에서 fill() 메소드는 특정 정적 값과 같이 배열의 모든 요소를 채우는 데 사용한다.

It changes the contents of an array in place and returns the modified array.

제자리 배열의 내용을 바꾸고 변경된 배열을 반환한다.

In this example, fill() method takes three arguments: the value to fill with (0), the starting index(1), and the ending index (3 - exclusive). It replaces at the specified range with the given value.

위 예에서, fill() 메소드는 3개의 인자를 받는다. 첫 번째는 바꾸고자 하는 값이고, 두 번째는 시작 인덱스, 세 번째는 마지막 인덱스고 제외한다.

0개의 댓글