Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>LEL</title>
- </head>
- <body>
- <section id="items"></section>
- <script>
- const items = [
- { title: "Titolo 1", price: 12 },
- { title: "Titolo 2", price: 14 },
- { title: "Titolo 3", price: 17 },
- ];
- const itemsHtml = items.map(
- (item) =>
- `<section>
- <header>${item.title}</header>
- <main>${item.price}</main>
- <section>`
- );
- const itemsContainer = document.querySelector("#items");
- itemsContainer.innerHTML = itemsHtml.join('<br>');
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement