You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've come up with a really good convention for naming methods:
person.getData=functionperson_getData(){};
We prepend with person_ so that the function name is unique from the identifier, avoiding errors in IE.
It also tells us EXACTLY what function we're dealing with in a stack trace.
@shichuan probably best to let you update the codebase with this new convention; if you approve. For a javascript error dashboard this will prove rather useful
The text was updated successfully, but these errors were encountered:
I've come up with a really good convention for naming methods:
We prepend with
person_
so that the function name is unique from the identifier, avoiding errors in IE.It also tells us EXACTLY what function we're dealing with in a stack trace.
@shichuan probably best to let you update the codebase with this new convention; if you approve. For a javascript error dashboard this will prove rather useful
The text was updated successfully, but these errors were encountered: