Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

117
Views
Print a Given Number in Reverse

My instructor gave this code that works well and, for where we are at this point in the course, this is the code he expects us to use. I understand 90% of this, but not fully sure why combining %10, math.trunc, and then multiplying by 10 will give me the reverse number. I really hope there is someone here that can explain it in simple terms for me to understand. Thank you!!

let num = +prompt("enter number");
let reversedNum = 0;
while (num !=0){
    let rightMostDigit = num %10;
    num = Math.trunc(num / 10);
    reversedNum = reversedNum*10 + rightMostDigit;
}

document.write(reversedNum)

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!