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

What are the differences between application server and a servlet container?

November 25, 2019 beroza

AWS IAM error : ‘Your authentication information is incorrect. Please try again’

October 25, 2019 beroza

Prefer dependency injection to hardwiring resources

January 22, 2020 beroza

Count the Number of Vowel Strings in Range

May 28, 2023 beroza

Who is listening on a given TCP port on Mac?

September 16, 2021 beroza

Fatal error: Uncaught Error: [] operator not supported for strings

May 15, 2019 beroza

What are the differences between freeze, seal and preventExtensions?

August 7, 2021 beroza

Write a Program to Find Minimum Moves to Convert String

January 12, 2023 beroza

How to become an AI developer?

October 5, 2024 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.