Tuesday, July 21, 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 

Return the next higher prime number

Published: February 11, 2022

Write a function that takes a number (a) as argument. If a is prime number, return a. If a is not prime number then return the next higher prime number.

const nextPrimeNumber = (num) => {
    for(let i = 2; i < num ; i++) {
        if(num % i === 0) {
            return nextPrimeNumber(num + 1)
        }

    }
    return num;
};

const input = 90;
console.log(nextPrimeNumber(input)); // 97

You May Also Like

Minimum Changes To Make Alternating Binary String

January 11, 2023 beroza

Mergesort vs Quicksort

December 20, 2023 beroza

How to start a Java spring boot application using Jenkins X?

June 27, 2020 beroza

What is Apache Kafka? Why should we use Kafka?

November 25, 2023 beroza

How to check if an element is visible in the current viewport as we scroll?

July 8, 2020 beroza

How to install composer in Mac OSX?

November 13, 2019 beroza

What is Type Assertions in TypeScript?

November 11, 2021 beroza

How to uninstall android studio from Ubuntu 16.04 or 18.04?

December 4, 2018 beroza

How to check if string contains a substring in JavaScript?

August 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.