Posts by Matheus Pereira • 25 points
2 posts
-
1
votes2
answers188
viewsQ: Removal of elements in the DOM with removeChild()
I’m starting with javascript, from scratch, I have this exercise where the goal is to add and remove city names in an html list. I know little about DOM. The insertion part already works, but the…
-
1
votes1
answer1028
viewsQ: Transforming a Single List into a Double Chained List
For a college job, I need to get a C function to receive a Single List and return a Double Chained List with the even values of the Single List that was passed. My attempt is this, but only displays…