core.js:6210 ERROR RangeError: Maximum call stack size exceeded code example

Example 1: jquery.min.js:689 Uncaught RangeError: Maximum call stack size exceeded

.on('touchstart.dropdown.data-api', '.dropdown-menu', function (e) { e.stopPropagation() })

Example 2: 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