5 ms·
If you accidentally forget to use 'new' when you're supposed to, the "constructor" method will change the global object instead of a new object, it can cause st
by LazerBear 12y ago
If you accidentally forget to use 'new' when you're supposed to, the "constructor" method will change the global object instead of a new object, it can cause strange behavior that is very hard to trace.
- hderms 12y agoAh, I see. I guess I've never forgotten to use new. That does sound incredibly annoying to debug.