Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript의 TypedArray.fill() 함수

<시간/>

TypedArray 객체의 fill() 함수는 배열의 모든 필수/원하는 요소를 지정 값(고정)으로 바꿉니다. 이 함수는 3개의 숫자를 받아들입니다. 하나는 고정 값을 나타내고 다른 두 개는 교체할 요소 부분의 시작 및 끝 인덱스를 나타냅니다(끝 값은 선택 사항).

구문

구문은 다음과 같습니다.

int32View.fill(464, 3);

예시

<html>
<head>
   <title>JavaScript Array every Method</title>
</head>
<body>
   <script type="text/javascript">
      var int32View = new Int32Array([64, 89, 65,21, 14, 66, 87, 55]);
      document.write("Contents of the typed array: "+int32View);
      document.write("<br>");
      result = int32View.fill(464, 3);
      document.write("Contents of the typed array after fill: "+int32View);
   </script>
</body>
</html>

출력

Contents of the typed array: 64,89,65,21,14,66,87,55
Contents of the typed array after fill: 64,89,65,464,464,464,464,464