Comment on Node.js Best PracticesparentComments−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
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.