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
While loop Programs in Javascript: Reverse Printing a Number
NewsProgramming Languages

While loop Programs in Javascript: Reverse Printing a Number

via Dev.to TutorialDeva I4h ago

REVERSE PRINTING A NUMBER: PROGRAM: EXPLANATION: assume 123. 123%10 = remainder 3. 12% 10 = remainder 2. do, any number to divide by 10, you get he last digit. Condition (no > 0). because if you reverse The number, will end a last digit is 0, so take number > 0 We Don't know the Count, so take remainder let rem = 0. rem is remainder. Then take remainder = (rem* 10) + number % 10.Initial assigned rem value is 0. ◾rem * 10 = 0 * 10 = 0 no % 10 = 123 % 10= 3 ◾0+3=3 Number= math. floor (number/10); math floor means it give a initial quotient. example(123/10=12.3). It gives only first digit (or) round value 12. ◾Then number = (123/10) = 12 Then print The remainder. ◾ rem= 3 number= 12 ◾ 3 × 10 = 30 12% 10 = 2. (30+2=32) ◾ Then number = (12/10) = 1 ◾ Now rem= 32 number = 1 ◾ rem * 10 32*10=320 no % 10 = 1 % 10 = 1.(320+1=321) ◾ Then number = (1/10) = 0 ◾ Then goto while loop(0>0) is false. OUTPUT:

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
0 views

Related Articles

Social gaming platform Rec Room, once valued at $3.5B, is shutting down
News

Social gaming platform Rec Room, once valued at $3.5B, is shutting down

TechCrunch • 9m ago

MLA+MOE based model and T5 comparison who wins?
News

MLA+MOE based model and T5 comparison who wins?

Medium Programming • 11m ago

[MM’s] Boot Notes — The Day Zero Blueprint — Operations from localhost to production without panic
News

[MM’s] Boot Notes — The Day Zero Blueprint — Operations from localhost to production without panic

Medium Programming • 13m ago

The US Military’s GPS Software Is an $8 Billion Mess
News

The US Military’s GPS Software Is an $8 Billion Mess

Wired • 39m ago

The Promise of 'Woke 2' Is Fueling a Leftist Fever Dream
News

The Promise of 'Woke 2' Is Fueling a Leftist Fever Dream

Wired • 41m ago

Discover More Articles