Skip to content

Instantly share code, notes, and snippets.

@Stadly
Stadly / max-call-stack.js
Last active September 18, 2025 08:32
Paste in address bar to get max call stack
javascript:(function(){var i=0;function r(){i++;r()}try{r()}catch(e){alert('maxStackSize = '+i+'\nerror: '+e)}})()