convert nodelist to arraay code example
Example 1: nodelist to array
Array.from(nodelist);
Example 2: nodelist to array
//spread the nodelist into an array
[...nodelist];
Array.from(nodelist);
//spread the nodelist into an array
[...nodelist];