본문 바로가기

JAVASCRIPT

some () 예문

const words = ['unique', 'uncanny', 'pique', 'oxymoron', 'guise'];

// Something is missing in the method call below

console.log(words.some(word => {
  return word.length < 6;
}));

som () 메서드 함수는 배열안에 주어진 판별함수를 통과하는지 테스트할수있는 메서드 함수입니다.

'JAVASCRIPT' 카테고리의 다른 글

== ,=== 차이로 알수있는 것들  (0) 2020.06.24
.every () 예문  (0) 2020.06.24
forEach() 예문  (0) 2020.06.24
The .reduce() Method  (0) 2020.06.23
The .findIndex() Method  (0) 2020.06.23