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

108
Views
Why does this function still works if the variable isn't inside the if and else?

Considering the input 0 in let p = Number, I don't understand how this code still works if p = 1 is outside the if and else of the countdown and count up.

function count() {
  let i = Number
  let f = Number
  let p = Number
  if (p <= 0) {
    window.alert('Impossible to count if 0. Considering 1.')
    p = 1
  }
  if (i < f) {
    // Count up
    for (let c = i; c <= f; c += p) {}
  } else {
    // Count down
    for (let c = i; c >= f; c -= p) {}
  }
}
}

Why is it not necessary to create another for for if (p <=0)?

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!