반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Android
- linux
- localserver
- vsCode
- PYTHON
- jest
- 맥
- MAC
- IOS
- xcode
- 개발
- VirtualBox
- TensorFlow
- Chrome
- webpack
- node
- build
- 티스토리챌린지
- 센토스
- qunit
- 네트워크
- ReactNative
- androidstudio
- 오블완
- centos
- 리눅스
- MachineLearning
- unittest
- react
Archives
- Today
- Total
로메오의 블로그
반복문 도중에 종료하기 [for of, lodash, array, 배열] 본문
반응형
for of
const fun = () => {
const arr = [1,2,3,4,5]
for (const i of arr) {
if (i === 3) return i
}
}
const func = fun();
console.log('result:', func)
>> result: 3
lodash
const fun = () => {
return _.find([1,2,3,4,5], (e) => {
if (e === 3) return e;
})
}
const func = fun();
console.log('result:', func)
>> result: 3
반응형
'Frontend > ETC' 카테고리의 다른 글
[재귀함수] 트리 구조를 리스트 구조로 변환 (0) | 2021.11.04 |
---|---|
[POSTMAN] 팀 워크 스페이스 생성 [Team workspaces] (0) | 2021.11.03 |
typescript lint 체크 제외하기 (0) | 2021.04.09 |
async await promise (0) | 2021.04.08 |
Git 명령어 정리 (0) | 2021.03.19 |
Comments