I know the Browser Javascript Stack size limit, but is there any way to break it? while I am reading Javascript Stack size limit in net, I can not find a way to overcome the browser Stack size limit. Is there any tricks to do it in java-script or angular.
for example
var i=0;
rec(para);
function rec(para){
if(para>=50000){
}
else{
$scope.items.push(i);
rec(i++)
}
}
is it possible to add 50000 data into an array..