Monday, September 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 

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

Determine if Two Events Have Conflict

December 27, 2022 beroza

Write a Program to Find N-ary Tree Postorder Traversal

January 8, 2023 beroza

Why useState is asynchronous in ReactJS?

January 1, 2021 beroza

Flask ImportError: No Module Named Flask in python script

July 12, 2020 beroza

Why the code executes after the redirection in java?

March 12, 2018 beroza

Group the People Given the Group Size They Belong To

February 26, 2023 beroza

Write a Program to Calculate Time Needed to Buy Tickets

May 18, 2023 beroza

Immediately Invoked Function Expression (IIFE) in JavaScript

March 6, 2021 beroza

Opening utun (connect(AF_SYS_CONTROL)): Operation not permitted openvpn Mac

August 27, 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 © 2026 Upokary. All rights reserved.