[for loop] for 반복문의 다양한 방법 (ES6)
2020. 5. 19. 15:00ㆍ컴퓨터언어/Vanilla JS
728x90
반응형
const city = ["New York", "Seoul", "Los Angeles", "Busan", "Shanghai", "Paris"]
function findCity(arr) {
for ( let i=0 ; i < arr.length; i++ ) {
if (arr[i] === "Busan") {
console.log("Gotcha!")
}
}
}
const findCity2 = arr => {
arr.forEach(element => {
if (element === "Busan") {
console.log("Gotcha!")
}
})
}
const findCity3 = arr => {
for (let element of arr) {
if (element === "Busan") {
console.log("Gotcha!")
}
}
}
728x90
반응형
'컴퓨터언어 > Vanilla JS' 카테고리의 다른 글
[Array Functions] forEach의 상향버전 : map, filter, reduce, find, findIndex (0) | 2020.05.20 |
---|---|
[Module] Import, Export 간단쓰 (0) | 2020.05.19 |
[JS] const로 선언해도 array와 object는 수정이 가능한가? (0) | 2020.05.11 |
[Javascript] JSON 핵심 정리 (0) | 2020.05.07 |
[3줄정리] High-order Function & Call-back Function (0) | 2020.05.04 |