Skip to content

Commit 7e2e451

Browse files
committed
fix: missing semicolon in saving data
1 parent 2db1e8d commit 7e2e451

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/academy/webscraping/scraping_basics_javascript2/08_saving_data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ if (response.ok) {
6262
}
6363

6464
// highlight-next-line
65-
data.push({ title: titleText, ...priceRange })
65+
data.push({ title: titleText, ...priceRange });
6666
});
6767

6868
// highlight-next-line

0 commit comments

Comments
 (0)