[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
반응형