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 024323c commit 1ef4cf9Copy full SHA for 1ef4cf9
04 - Array Cardio Day 1/index-START.html
@@ -76,7 +76,11 @@
76
77
// 6. create a list of Boulevards in Paris that contain 'de' anywhere in the name
78
// https://en.wikipedia.org/wiki/Category:Boulevards_in_Paris
79
-
+ const deBoulevards = Array.from(document.querySelector('.mw-category').querySelectorAll('a')).map(function (link) {
80
+ return link.textContent;
81
+ }).filter(function (text) {
82
+ return text.includes('de');
83
+ });
84
85
// 7. sort Exercise
86
// Sort the people alphabetically by last name
0 commit comments