for, foreach

403 단어 foreachforfor
        // for => [{ 0 }. { 1 }, { 2 }] => 위치를 i로 반복
        for(let i=0; i<result.length; i++) {
            result[i]['imageUrl'] = `/shop/image?code=${result[i]._id}`;
        }

        // foreach => [{  }, {  }, {  }] => 내용을 tmp로 반복
        for(let tmp of result) {
            tmp['imageUrl'] = `/shop/image?code=${tmp._id}`;
        }

좋은 웹페이지 즐겨찾기