Thursday, December 25, 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 

Find the highest integer in the array using recursion

Published: February 13, 2022Last updated: December 26, 2022 code, programming, recursion

Create a function that finds the highest integer in the array using recursion.

Examples:

findHighest([-1, 3, 5, 6, 99, 12, 2]) ➞ 99

findHighest([0, 12, 4, 87]) ➞ 87

findHighest([6,7,8]) ➞ 8
const findHighest = (arr) => {
    if(arr.length === 1) {
        return arr[0];
    }
    let max = findHighest(arr.slice(1));
    return arr[0] > max ? arr[0] : max;
}

console.log(findHighest([-1, 3, 5, 6, 99, 12, 2])); // 99

You May Also Like

How to check if an array contains a value in JavaScript?

August 6, 2021 beroza

How to get radio button value using JavaScript?

July 16, 2019 beroza

Write a Program to Find Number of Unequal Triplets in Array

January 16, 2023 beroza

How to do function overloading in TypeScript?

November 15, 2021 beroza

Replace All ?’s to Avoid Consecutive Repeating Characters

January 11, 2023 beroza

Write a Program to Find Maximum Population Year

May 11, 2023 beroza

How to integrate SonarQube with react application in Jenkins pipeline?

October 2, 2022 beroza

An anchor(<a href=“”>) wrapping a iframe (<iframe>) does not work

August 27, 2019 beroza

What is JavaScript closure and how it works?

January 28, 2019 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.