Skip to content

Commit 17c30c4

Browse files
author
John Carlo Buenaflor
committed
04 completed again
1 parent 06a50a3 commit 17c30c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

04 - Array Cardio Day 1/index-START.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
// 6. create a list of Boulevards in Paris that contain 'de' anywhere in the name
5454
// https://en.wikipedia.org/wiki/Category:Boulevards_in_Paris
5555
const blvdsDOM = document.querySelectorAll('.mw-category-group li')
56-
const blvds = Array.from(blvdsDOM).map(b => b.innerText)
56+
const blvds = Array.from(blvdsDOM).map(b => b.textContent)
5757
const blvdsDE = blvds.filter(b => b.toLowerCase().includes('de'))
5858

5959

0 commit comments

Comments
 (0)