Tuesday, April 7, 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 

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 Jenkins X works with Kubernetes using PROW and Tekton?

May 13, 2020 beroza

error reading tomcat-embed-core.jar; zip file is empty

January 30, 2019 beroza

rest_cannot_create Sorry, you are not allowed to create posts as this user in WordPress REST API

July 2, 2019 beroza

Bind for 0.0.0.0:8080 failed: port is already allocated

October 17, 2020 beroza

Binary search algorithm

March 15, 2022 beroza

Uncaught (in promise) SyntaxError: Unexpected token in JSON at position 0

April 18, 2021 beroza

Parsing error: Adjacent JSX elements must be wrapped in an enclosing tag. Did you want a JSX fragment

August 23, 2019 beroza

How to access react context outside of render function in ReactJS?

February 28, 2020 beroza

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

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