Friday, August 14, 2026
Latest:
  • Präsentation für b1
  • Verb “werden” Konjugation
  • In German, verb sein (to be) Konjunktion
  • Wichtige wörter für B1 prüfung
  • What are the main differences between ApplicationContext and BeanFactory?
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

How to load ads using Single Request Architecture in Google Publisher Tag?

June 30, 2021 beroza

Async await in JavaScript

March 6, 2021 beroza

Count Pairs Of Similar Strings

January 6, 2023 beroza

Find total number of Sundays, Saturdays between two dates in JavaScript

December 22, 2018 beroza

Uncaught TypeError: render is not a function react-dom

July 5, 2019 beroza

Write a program to find increasing decreasing string

June 7, 2022 beroza

Webpack related important links

August 11, 2022 beroza

Uncaught TypeError: iterable is not iterable

May 21, 2019 beroza

How to add attribute or property to an array of objects in JavaScript?

April 6, 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.