script-Each配列の組み込み関数


  • アレイ内蔵関数
    配列を使用する場合、これらの関数が分かれば便利です.
  • const superheros = [
      '아이언맨',
      '캡틴 아메리카',
      '토르',
      '닥터 스트레인지'
    ];
    
    for (let i = 0; i < superheros.length; i++) {
      console.log(superheros[i]);
      //superheros 배열 안의 값이 하나씩 출력
    }
    
    foreachは、与えられた関数をそれぞれアレイ要素に対して実行します.
    forEachを使用して、上記の文を次のように表すことができます.
    const superheros = [
      '아이언맨',
      '캡틴 아메리카',
      '토르',
      '닥터 스트레인지'
    ];
    
    function print(hero) {
      console.log(hero);
    }
    
    superheros.forEach(print);
    または、次のように表すことができます.
    const superheroes = [
      '아이언맨',
      '캡틴 아메리카',
      '토르',
      '닥터 스트레인지'
    ];
    
    superheroes.forEach(function(hero) {
      console.log(hero);
    })