Skip to main content

All Questions

Filter by
Sorted by
Tagged with
0 votes
0 answers
526 views

Javascript obfuscators can't handle classes (call stack exceeded)

Here's the code which makes problems: class Player { hasPos = false; }; That's all the code, it doesn't matter it doesn't do anything for now I tried 3 methods: https://www.npmjs.com/package/...
uIM7AI9S's user avatar
  • 391
1 vote
3 answers
367 views

indefinite call to "set function()" in JavaScript ES6 class

I am running this simple class in JavaScript but in console it give me a "Maximum call stack size exceeded" error. and help?!? class Person { constructor(name, age) { this.name = ...
Ehsan Sarshar's user avatar
3 votes
3 answers
2k views

maximum call stack size exceeded - no apparent recursion

I've spent about 12 hours looking through this code, and fiddling with it, trying to find out where there's a recursion problem because I'm getting the, "maximum call stack size exceeded," error, and ...
jgrant's user avatar
  • 659