Comment on Node.js Best PracticesparentComments−hderms11ywhy do people want to avoid using new?−LazerBear11yIf 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.−hderms11yAh, I see. I guess I've never forgotten to use new. That does sound incredibly annoying to debug.
Comments
why do people want to avoid using new?
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.
Ah, I see. I guess I've never forgotten to use new. That does sound incredibly annoying to debug.