Saturday, April 4, 2026
Latest:
  • In German, verb sein (to be) Konjunktion
  • 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?
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

Number of Different Integers in a String

January 3, 2023 beroza

Babel vs Webpack: What are the differences?

August 27, 2021 beroza

How to add script with script tag in ReactJS?

May 31, 2021 beroza

What are Enums in TypeScript?

November 12, 2021 beroza

How to get the current timestamp in JavaScript?

May 10, 2020 beroza
apple macbook

Things we should do before buying a Apple MacBook

February 21, 2021 beroza

Write a program to match decrement increment string

June 10, 2022 beroza

How to execute a function on load, resize and scroll event in jQuery?

September 16, 2019 beroza

What is useState hook in React? How to use useState hook?

January 20, 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 © 2026 Upokary. All rights reserved.