Answers for "turn a node list to an array"

6

js convert nodelist to array

// Get all buttons as a NodeList
var btns = document.querySelectorAll('button');

// Convert buttons NodeList to an array
var btnsArr = Array.from(btns);
Posted by: Guest on April-14-2020
3

nodelist to array

Array.from(nodelist);
Posted by: Guest on July-22-2020

Code answers related to "turn a node list to an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language