Uncaught RangeError: Maximum call stack in JavaScript
Robin Jangu
Posted On: March 28, 2018
15308 Views
2 Min Read
Errors occur where you least expect them, JS developers face this nemesis on a daily basis.
There are 2 ways to get these wonderful error messages:
1) Non-Terminating Recursive functions
Browser allocates memory to all data types. Sometimes calling a recursive function over and over again, causes the browser to send you this message as the memory that can be allocated for your use in not unlimited.
There is nothing painful for a coder than a non-terminating function or a method of recursion that tends to get stuck in an infinite loop.
Be considerate while calling functions, also dry run is the best practice to prevent them.
Maximum call stack gets overflow and washes away your hopes of running the code correctly.(XD)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
var a = new Array(4294967295); //OK var b = new Array(-1); //range error var num = 2.555555; document.writeln(num.toExponential(4)); //OK document.writeln(num.toExponential(-2)); //range error! num = 2.9999; document.writeln(num.toFixed(2)); //OK document.writeln(num.toFixed(25)); //range error! num = 2.3456; document.writeln(num.toPrecision(1)); //OK document.writeln(num.toPrecision(22)); //range error! |
2) Out of Range
If someone asks you what your name is.
You won’t reply ‘2000 yrs’.
1234567
var num = 1;try { num.toPrecision(500); //no can't have 500 significant digits }catch(err) { document.getElementById("mylife").innerHTML =err.name; }
Certain functions in JavaScript have ranges of inputs that you can give. Always be careful of the ranges. Sometimes while scripting we use functions that in the end go out of range, while performing tasks. These errors can be easily tackled, if while implementation you keep track of the ranges of variable types used.
While browsers like Chrome will give error notifications, IE will crash.
It should be of utmost priority that you check the valid input ranges.
Examples:
Number.toFixed(digits) 0 to 20
Number.toPrecision(digits) 1 to 21
Number.toExponential(digits) 0 to 20
Null is not 0
Hopefully this blog will help coders a bit in their frustrating hard work.
Let us learn from your mistakes too, please comment.
If someone asks you what your name is.
You won’t reply ‘2000 yrs’.
1 2 3 4 5 6 7 |
var num = 1; try { num.toPrecision(500); //no can't have 500 significant digits } catch(err) { document.getElementById("mylife").innerHTML =err.name; } |
Certain functions in JavaScript have ranges of inputs that you can give. Always be careful of the ranges. Sometimes while scripting we use functions that in the end go out of range, while performing tasks. These errors can be easily tackled, if while implementation you keep track of the ranges of variable types used.
While browsers like Chrome will give error notifications, IE will crash.
It should be of utmost priority that you check the valid input ranges.
Examples:
Number.toFixed(digits) 0 to 20
Number.toPrecision(digits) 1 to 21
Number.toExponential(digits) 0 to 20
Null is not 0
Hopefully this blog will help coders a bit in their frustrating hard work.
Let us learn from your mistakes too, please comment.
Got Questions? Drop them on LambdaTest Community. Visit now