Wednesday, February 25, 2026
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 

Write an efficient program to print prime numbers.

Published: November 19, 2021 code, JavaScript, number, prime, prime number

What is a prime number?

Prime numbers are numbers that are greater than 1 and it has only two factors, 1 and the number itself.

The solution to print prime number:

Following is the code to write prime number up to 20 in JavaScript.

    for(let i = 2; i < 20; i++){
        for(let j = 2; j <= i; j++) {
            if(i % j === 0 && j !== i){
                break;
            }

            if (i === j) {
                console.log(i);
            }
        }
    }

You May Also Like

How to access mac localhost site from iPhone?

January 22, 2022 beroza

What is SaaS, PaaS and IaaS? Explain with example

May 9, 2019 beroza

Find optimal activity list based on a given duration and budget using JavaScript

February 12, 2022 beroza

Write a Program to Defuse the Bomb

May 19, 2023 beroza

How to copy WordPress live database to local database?

May 17, 2019 beroza

German words with gender

January 25, 2025 beroza

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

November 29, 2020 beroza

What is a web.xml and why we need web.xml?

November 26, 2019 beroza

How to include ACF fields in WordPress REST API response?

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