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

215
Views
RangeError: Maximum call stack size exceeded - recursive function in js

I understand that the problem is in the fact function, as I can't print the input at some point, but how can I fix it?

function factDigits(n) {
  let factorial = fact(BigInt(n));
          
  return digits_count(factorial);
}
        
function fact(input) {
  if(input === 0n) {
    return 1n;
  }
          
  return input * fact(input-1n);
}
        
function digits_count(n) {
  let count = 0;
  if (n >= 1n) ++count;
        
  while (n / 10n >= 1n) {
   n /= 10n;
   ++count;
  }
        
  return count;
}
about 4 years ago · Santiago Gelvez
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!