Why doesn't it work? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why doesn't it work?

I'm trying to do an animation through which the image chosen has to move to the center, while the other two should disappear, but on this last thing I'm stuck https://code.sololearn.com/WGMg058qqwXL/?ref=app

7th Jun 2021, 5:33 PM
RichardB
RichardB - avatar
4 Answers
+ 1
The 'opponent' variable is not an array. It is a nodeList. It doesn't have splice method. And removing elements using splice method doesn't remove the elements from DOM. Use a forEach method. I don't think map is also a method for NodeList. But you can convert a nodelist into an array using Array.from(nodelist) method.
7th Jun 2021, 5:59 PM
Aravind Shetty
Aravind Shetty - avatar
+ 1
It just looks like an array.. But you don't have many methods for nodelist. QuerySelector and other DOM Methods return node list. It is an HTML collection Object. You can just convert them to an array using array.from(). Convert them and use slice instead of splice. Then iterating through the sliced array, assign display style to none for every element
8th Jun 2021, 4:02 AM
Aravind Shetty
Aravind Shetty - avatar
0
Sorry, what's the difference between an array and a nodelist? Could you guide me/write some code to understand how to make it work?
7th Jun 2021, 6:26 PM
RichardB
RichardB - avatar
0
I've found a simplier way to make them disappear through a for loop. Anyway your advice opened me the road to come to this solution so thanks a lot for the help. I made the code public, give it a look if you want
9th Jun 2021, 7:47 PM
RichardB
RichardB - avatar