티스토리 뷰

자바스크립트

array.from, fill, includes

안양사람 2020. 12. 17. 00:47
728x90
SMALL

Array.from() 메서드는 유사 배열 객체(array-like object)나반복 가능한 객체(iterable object)를 얕게 복사해새로운Array 객체를 만듭니다.

Array.from(array1);

 

fill() 메서드는 배열의 시작 인덱스부터 끝 인덱스의 이전까지 정적인 값 하나로 채웁니다.

const array1 = [1, 2, 3, 4];

// fill with 0 from position 2 until position 4
console.log(array1.fill(0, 2, 4));
// expected output: [1, 2, 0, 0]

// fill with 5 from position 1
console.log(array1.fill(5, 1));
// expected output: [1, 5, 5, 5]

console.log(array1.fill(6));
// expected output: [6, 6, 6, 6]

 

includes() 메서드는 배열이 특정 요소를 포함하고 있는지 판별합니다.

const array1 = [1, 2, 3];

console.log(array1.includes(2));
// expected output: true

const pets = ['cat', 'dog', 'bat'];

console.log(pets.includes('cat'));
// expected output: true

console.log(pets.includes('at'));
// expected output: false
728x90
LIST

'자바스크립트' 카테고리의 다른 글

순열과 조합  (0) 2020.12.29
자바스크립트 클래스 변경 전후  (1) 2020.12.17
객체 배열 index찾기  (0) 2020.08.30
배열 삽입, 제거  (0) 2020.08.20
자바스크립트 객체 속성의 최대값 구하기  (0) 2020.08.13
댓글
공지사항