How to convert a node list to an array in JavaScript?


Following is the code to convert a node list to an array in JavaScript −

Example

 Live Demo

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   .sample {
      display: inline-block;
      font-size: 20px;
      font-weight: 500;
      color: white;
      background-color: blue;
      padding:10px;
      width: 100px;
      height: 100px;
   }
</style>
</head>
<body>
<h1>Convert a node list to an array</h1>
<div class="sample">1</div>
<div class="sample">2</div>
<div class="sample">3</div>
<div class="sample">4</div>
<br>
<button class="Btn">CLICK HERE</button>
<h3>Click on the above button to change colors of all the above div </h3>
<script>
   let sampEle = document.querySelectorAll('.sample');
   let BtnEle = document.querySelector('.Btn');
   BtnEle.addEventListener('click',()=>{
      Array.from(sampEle).forEach(item=>{
         item.style.backgroundColor = 'red';
      })
   })
</script>
</body>
</html>

Output

On clicking the ‘CLICK HERE’ button −

Updated on: 17-Jul-2020

252 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements