본문 바로가기
NodeJs

every

by ByteBridge 2020. 1. 10.
반응형
-- 배열에 있는 모든 데이터가 조건을 만족하는지 검증 할때 every 메서드가 유용함
const arr = [2,3,4]
const isBigger = arr.every(key => key >2)
//output -> true
반응형

'NodeJs' 카테고리의 다른 글

map and filter  (0) 2020.01.10
foreach  (0) 2020.01.10
Find and includes  (0) 2020.01.10
module.export  (0) 2020.01.10
Nodejs dev env setup  (0) 2020.01.10