Skip to content

Commit

Permalink
Merge pull request #11 from tinkersain/tanisha
Browse files Browse the repository at this point in the history
webpage js
  • Loading branch information
tinkersain authored Jul 4, 2024
2 parents 041c63c + 05ad9cd commit f7f292b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions webpage.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,17 @@ <h1>Contact Us</h1>
<h1 style="background-color: rgb(159, 128, 187)">Hello</h1>
</body>
</html>
<script>
let arr = [
[1, 2, 3, 4, 5],
[6, 7, 8, 9, 10],
[11, 12, 13, 14, 15],
[16, 17, 18, 19, 20],
];

for (let i = 0; i < arr[i].length; i++) {
for (let j = 0; j < arr[i].length; j++) {
console.log(i + "" + j, arr[i][j]);
}
}
</script>

0 comments on commit f7f292b

Please sign in to comment.