Answers for "ERROR in Maximum call stack size exceeded"

1

npm ERR! Maximum call stack size exceeded

npm cache clean --force
Posted by: Guest on May-01-2020
0

ERROR in Maximum call stack size exceeded

It is likely that a function with infinite loop is being called
Posted by: Guest on August-22-2021
-1

Uncaught RangeError: Maximum call stack size exceeded

// Can be caused by a large recursive function, i.e:

function fibonacci(num){
    if (num === 1) 
    {
        return [0, 1]
    } 
    else 
    {
        var s = fibonacci(num - 1)
        s.push(s[s.length - 1] + s[s.length - 2])
        return s
    }
};

fibonacci(20000)[20000]

// In which case, the fix is to make it non-recursive if possible
Posted by: Guest on May-17-2021

Code answers related to "ERROR in Maximum call stack size exceeded"

Browse Popular Code Answers by Language