Hi dear welcome to "CodePrime" Blog . In this post you are going to learn Nested Loop Explain Uses Tutorial In JavaScript . First Creat A index.html file Copy This HTML CODE and pest it one your code editor. 2ndly creat nested-loop.js file Then Copy The JS CODE and pest it then open the index.html file with your browser.
HTML CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="/nested-loop.js"></script>
<title>javascript</title>
</head>
<body >
<h2>Javascript Tutorial <br>By Codeprime</h2>
</body>
</html>
JAVASCRIPT CODE
for(var a = 1; a <= 100; a++){
for(var b = 1; b <= a; b++){
document.write(a + " ");
}
document.write("<br>");
}
0 Comments