ReiniervanLimpt / web-app-from-scratch-1920

Web App From Scratch @cmda-minor-web 1920
https://reiniervanlimpt.github.io/web-app-from-scratch-1920/
1 stars 0 forks source link

🗺️ Array.map #12

Closed deannabosschert closed 4 years ago

deannabosschert commented 4 years ago

Lekkermappen.exe

function prettifyArray(array) {
        return array.map(results => {
          return {
            title: results.title.value,
            location: results.location.value,
            type: results.type.value,
            img: results.img.value
          };
        });
}

map?!

ReiniervanLimpt commented 4 years ago

thank you!! <:^)