We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bff9f0 commit 3c354c9Copy full SHA for 3c354c9
sources/academy/webscraping/scraping_basics_javascript2/10_crawling.md
@@ -156,10 +156,12 @@ const $ = await download(listingURL);
156
const $promises = $(".product-item").map(async (i, element) => {
157
const $productItem = $(element);
158
const item = parseProduct($productItem, listingURL);
159
+
160
// highlight-next-line
161
const $p = await download(item.url);
162
163
item.vendor = $p(".product-meta__vendor").text().trim();
164
165
return item;
166
});
167
const data = await Promise.all($promises.get());
0 commit comments