Sunday, October 12, 2025
Latest:
  • German Pronouns with Nominative, Accusative, and Dative cases
  • German articles for the nominative, accusative, and dative cases
  • Der kleine Vogel und die Sonne
  • German alphabet pronunciation
  • Command design pattern
Upokary

Upokary

Quality information

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

Calculate the sum of numbers from 1 to n using recursion

Published: June 17, 2023 code, program, programming, programming tips, recursion
(function(){
    // Calculate the sum of numbers from 1 to n using recursion.

    const getSum = (arr) => {
       if (arr.length < 1) {
          return 0;
       }

       return arr.pop() + getSum(arr);
    };
 
    const a = [1, 2, 3, 5];
    console.log(getSum(a))
})();

You May Also Like

Write a Program to Make The String Great

December 31, 2022 beroza

Function Currying in JavaScript Recursively

October 1, 2022 beroza

What are the differences between inline vs inline-block?

May 9, 2019 beroza

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

April 6, 2021 beroza

What are log4j logging hierarchical order in Java?

November 19, 2019 beroza

What is machine learning? What are different types of machine leanring methods?

July 12, 2020 beroza

Keyword “this” is immutable in JavaScript

February 25, 2019 beroza

TypeError: #Object is not a function

March 25, 2019 beroza

Type ‘null’ is not assignable to type ‘T’

December 1, 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.