I recently was quickly shortening some method names in a javascript file and ran into a problem when I converted one method name:
Before:
RefreshSevenDayGrid(){
// some stuff
}
After:
7Day() {
// some stuff
}
I quickly discovered that the javascript no longer worked. I heard from several people that numbers should never be used for Method or Class names. Is there ever an exception to this?