zig.com Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Arrays</h1>
<h2>For In Loops</h2>
<p>The for in statement can loops over array values:</p>
<p id="demo"></p>
<script>
  const numbers = [45, 4, 9, 16, 25];
  let txt = "";
  for (let x in numbers) {
    txt += numbers[x] + "<br>";
  }
  document.getElementById("demo").innerHTML = txt;
</script>
</body>
<!-- /js/tryit.asp?filename=tryjs_array_for_in Thu, 06 Feb 2025 19:15:26 GMT -->
</html>