Monday, March 16, 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 

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

Right shift operator

December 24, 2023 beroza

Lexicographically Smallest Equivalent String

June 11, 2023 beroza

Write a Program to Find Occurrences After Bigram

December 31, 2022 beroza

How to center an image vertically and horizontally inside a div?

August 29, 2021 beroza

Horizontal and Vertical scaling

December 4, 2021 beroza

The following SDK component was not installed: sys-img-x86-addon-google_apis-google-21

December 4, 2018 beroza

Consider a builder when faced with many constructor parameters

January 23, 2020 beroza

Useful regular expressions that every developer should know

July 6, 2020 beroza

How to pass an event to parent DOM from Iframe using JavaScript?

November 29, 2020 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.