The goal is to get 3 unordered lists with name, age and email in each of them. I managed to make a structure of list, but I can’t figure out how to get access to values of elements.
Any help would be really appreciated.Thanks
JS
const users = [
{
name: "Helene",
age: 49,
email: "[email protected]",
}, {
name: "Janet",
age: 32,
email: "[email protected]",
}, {
name: "Michel",
age: 21,
email: "[email protected]",
}];
HTML
<div class="app"></div>