Monday, June 2, 2025
Latest:
  • German Pronouns with Nominative, Accusative, and Dative cases
  • German articles for the nominative, accusative, and dative cases
  • Der kleine Vogel und die Sonne
  • German alphabet pronunciation
  • Command design pattern
Upokary

Upokary

Quality information

  • Health
  • Life
  • Fashion
  • Food
  • Code
  • English
  • বাংলা
Technology 

Write an efficient program to print prime numbers.

Published: November 19, 2021code, 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 integrate SonarQube with react application in Jenkins pipeline?

October 2, 2022 beroza

Fatal error: Uncaught Error: [] operator not supported for strings

May 15, 2019 beroza

How can we downgrade from ruby 2.7.1 to ruby 2.3.1?

May 21, 2020 beroza

Difference between Arrays.asList(array) and new ArrayList(Arrays.asList(array)) in Java

May 26, 2020 beroza

Uncaught TypeError: render is not a function react-dom

July 5, 2019 beroza

Write a program to remove palindromic subsequences from string

June 16, 2022 beroza

Use cases of Sets in JavaScript

September 19, 2021 beroza

Write a Program to Find N-ary Tree Level Order Traversal

January 8, 2023 beroza

Find the Prefix Common Array of Two Arrays

May 28, 2023 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

Languages

  • EnglishEnglish
  • বাংলাবাংলা

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 © 2025 Upokary. All rights reserved.