All Questions
3 questions
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/...
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 = ...
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 ...