Web/JAVASCRIPT

Javascript_forEach 기초 정리

HAN_PY 2020. 12. 19. 11:29
반응형

1. helpermethod

자바스크립트에서 helpermethod인 forEach에 대해 알아보자. 가장 기초적인 예시부터 다양한 예시를 적어보겠다. 

 

 

 

2. forEach

forEach의 가장 큰 특징은 리턴 없이 하나씩 돌려주는 것이다.

일반 사용

const fruits = ['apple', 'banana', 'peach', 'blue berry']

fruits.forEach(function(fruit){
    console.log(fruit);
})

// 과일이 하나씩 출력된다.

 

 

 

axios 사용

// return값이 없어서 axios에 유용하게 사용가능하다.
const urls = ['https://han...', 'https://python...', 'https://javascript...']
urls.forEach(url => {
    axios.get(url)
        .then(~~)
        .catch(~~)
})

 

 

반응형