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

188
Views
function to calculate the n-th Fibonacci number

i need to create a fibonacci function, i figured out the code for positive values

const fib = n => {
  let prev = 0, next = 1;
  for(let i = 0; i < n; i++){
    next = prev + next;
    prev = next - prev;
  }
  return prev;
}

maybe someone will tell you how to write code when n is a negative number

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

const fib = n => {
  const isPositive = n >= 0
  let prev = 0, next = 1;
  for(let i = 0; i < Math.abs(n); i++){
    next = prev + next;
    prev = next - prev;
  }
  return isPositive ? prev : prev * -1;
}
about 4 years ago · Juan Pablo Isaza Report
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!