Friday, December 5, 2025
Latest:
  • Wichtige wörter für B1 prüfung
  • What are the main differences between ApplicationContext and BeanFactory?
  • German B1 Word list
  • How does Lazy annotation work in Spring?
  • How Spring framework resolves circular dependencies?
Upokary

Upokary

Quality information

  • Health
  • Life
  • Fashion
  • Food
  • Code
  • English
  • বাংলা
Technology 

Write a program to print first 50 natural numbers using recursion.

Published: November 1, 2022 recursion

The following code will print the first 50 natural numbers using recursion:

    const printNumber = (num) => {
       if (num < 1) {
          return 1;
       }

       printNumber(num -1);
       console.log(num);
       return num;
    };

    printNumber(5)

You May Also Like

Useful command that developers should know

July 31, 2019 beroza

Write a Program to Find Number of Unequal Triplets in Array

January 16, 2023 beroza

Bind for 0.0.0.0:8080 failed: port is already allocated

October 17, 2020 beroza

WordPress security tricks to secure Websites

February 7, 2021 beroza

How to create MySQL user with all privileges?

May 17, 2019 beroza

How to render and return html using render_to_string in rails?

May 27, 2020 beroza

Redistribute Characters to Make All Strings Equal

December 30, 2022 beroza

How to set custom user-agent in Google chrome?

June 1, 2020 beroza

Can’t define property object not extensible

September 11, 2021 beroza

Why Upokary?

Upokary.com is a useful application in everyday life. It provides very handy information regarding every aspect of life. Each and every tip of upokary.com is meant to make life better.

Upokary tools

  • Youtube thumbnail
  • Youtube video downloader

Useful Links

  • Handy code
  • Technology
  • People
  • Programming
  • Quote
  • Travel
  • WordPress
  • IELTS
  • Kids

Pages

  • Sitemap
  • Privacy policy
  • About us
  • Contact us

Support

For any kind of query or question please drop a message in the following email: upokary@gmail.com
Copyright © 2025 Upokary. All rights reserved.