반복문 내장함수(응용)1

1) 실습과제

const items = [
    {
        id: 1,
        name: '아이언맨'
    },
    {
        id: 2,
        name: '캡틴 아메리카'
    },
    {
        id: 3,
        name: '토르'
    },
    {
        id: 4,
        name: '닥터 스트레이지'
    }
];
반복문내장함수-forEach

Last updated

Was this helpful?