Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

JavaScript Number Pattern 59

Updated on Jan 10, 2024
By Mari Selvan
👁️ 224 - Views
⏳ 4 mins
💬 1 Comment
JavaScript Number Pattern 59

Photo Credit to CodeToFun

JavaScript Number Pattern 59

Here`s a program that prints the above number pattern using JavaScript Programming:

example.html
Copied
Copy To Clipboard
<!DOCTYPE html>
<html>
 <head>
  <style>
   div{
    display: inline-block;
    text-align: center;
    width: 20px;
   }
  </style>
 </head>
<body>

<script>
var i, j, k, m, n;
var k = 6, l = 13, m = 16;
for(i=1; i<=5; i++)
{
 for(j=1; j<=5; j++)
 {
  if(i == 1)
   document.write("<div>"+ j +"</div>");
  else if(j == 5)
   document.write("<div>"+ k++ +"</div>");
  else if(i == 5)
   document.write("<div>"+ l-- +"</div>");
  else if(j == 1)
   document.write("<div>"+ m-- +"</div>"); 
  else
   document.write("&nbsp;&nbsp;&nbsp;&nbsp; ");
 }
 document.write("<br>");
}
</script>
</body>
</html>

💻 Testing the Program

When you run the above program, it will print the following output:

Output
1  2  3  4  5
16          6
15          7
14          8
13 12 11 10 9

🧠 How the Program Works

Let's break down the logic behind the code:

  1. Variable Declaration: The program starts by declaring several variables: i, j, k, m, and n.
  2. Variable Initialization: The variables k, l, and m are initialized to the values 6, 13, and 16, respectively.
  3. Outer Loop (i): The outer loop runs from i = 1 to i <= 5. This loop controls the rows of the pattern.
  4. Inner Loop (j): Inside the outer loop, there's an inner loop that runs from j = 1 to j <= 5. This loop controls the columns of the pattern within each row.
  5. Conditional Statements: Inside the inner loop, there are several conditional statements based on the values of i and j.
    1. if(i == 1): When i is 1 (first row), it prints the value of j wrapped in a <div> element.
    2. else if(j == 5): When j is 5 (last column), it prints the value of k and then increments k by 1, wrapped in a <div> element.
    3. else if(i == 5): When i is 5 (last row), it prints the value of l and then decrements l by 1, wrapped in a <div> element.
    4. else if(j == 1): When j is 1 (first column), it prints the value of m and then decrements m by 1, wrapped in a <div> element.
    5. else: For all other cases, it prints four non-breaking space characters (&nbsp;) to create spacing.
  6. Line Break: After each row is processed, a line break (<br>) is added to move to the next line.
  7. Result: The program generates a pattern that consists of five rows and five columns. The pattern varies based on the values of i and j as described in the conditional statements. The pattern elements are enclosed within <div> tags, and the spacing is controlled by printing non-breaking space characters or the values of k, l, and m.
  8. Output: The resulting pattern is displayed on the webpage as a set of nested <div> elements, creating a visually interesting arrangement of numbers and spaces.

💯 Tips for Enhancement:

Explore the versatility of this pattern by adjusting its parameters. Whether you increase or decrease the size, tweak the spacing, or modify the characters used, each change opens up a world of possibilities, allowing you to customize and create your unique visual effects.

✔ Conclusion:

Creating visually appealing patterns is not only a fun endeavour but also a great way to enhance your programming or design skills. We hope this tutorial has inspired you to explore the world of creative coding. Share your creations with us, and let your imagination run wild!

🤗 Closing Call-to-Action:

We'd love to see your unique interpretations of the number pattern. Share your creations in the comments below, and don't hesitate to reach out if you have any questions or suggestions for future tutorials. Happy coding!

👨‍💻 Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
👋 Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
10 months ago

If you have any doubts regarding this article (JavaScript Number Pattern 59) please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy