FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Some Example Programs of While Loop Using Java Script
How-ToWeb Development

Some Example Programs of While Loop Using Java Script

via Dev.to JavaScriptDeva I1h ago

Today I post a some example programs of while loop using Java script.this all programs are the technical Programs of some companies to ask their technical rounds. 1️⃣ MULTIPLES OF 3 AND 5? To find multiples of 3 and 5 it means what number divisible by 3 and 5 is called multiples. Find the multiples use the modulo operator (%).This operator used for find a remaider value otherwise division (/) operator used for only quotient. PROGRAM: STEPS: ✓First take the initial value i = 3.because 3 is starting value from given number. ✓Then give the condition , assume final value is 100, so take the value (i<=100) ✓Next check given number divisible by i,so give(i % 3 == 0 && i % 5 == 0). ✓ Print the value of i. ✓Then increment the value of i. WORKING: 1.First take given value 3. 2.Then check the condition (i<=100). 3.Next check the if condition (i % 3 == 0 && i % 5 == 0) it's makes sure the which number gets divided and gets remainder 0. ◾ i is 3 .(3<=100 true).then check the if condition.(3%3==0 t

Continue reading on Dev.to JavaScript

Opens in a new tab

Read Full Article
0 views

Related Articles

Save $100 On Our Favorite Soundbar and Subwoofer Combo
How-To

Save $100 On Our Favorite Soundbar and Subwoofer Combo

Wired • 30m ago

Sony's new theater system lets you upgrade your TV setup gradually - how it works
How-To

Sony's new theater system lets you upgrade your TV setup gradually - how it works

ZDNet • 1h ago

How to delete your personal info from the internet (while saving money)
How-To

How to delete your personal info from the internet (while saving money)

ZDNet • 2h ago

Here Is What Programming Taught Me About Growth
How-To

Here Is What Programming Taught Me About Growth

Medium Programming • 3h ago

I Did Everything “Right” in Programming — Here Is What Actually Mattered
How-To

I Did Everything “Right” in Programming — Here Is What Actually Mattered

Medium Programming • 3h ago

Discover More Articles