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
In JavaScript, TitleCasedNames usually indicate a constructor — a function which should be called with a prefix new. Capital letter in the beginning also implies that the object can be extended (for instance, using class D extends C syntax in CoffeeScript). Violating this rule might cause confusion and prevent objects from being easily extendable. Bacon is following this convention, while Bacon.jQuery is not.
The text was updated successfully, but these errors were encountered:
In JavaScript, TitleCasedNames usually indicate a constructor — a function which should be called with a prefix new. Capital letter in the beginning also implies that the object can be extended (for instance, using class D extends C syntax in CoffeeScript). Violating this rule might cause confusion and prevent objects from being easily extendable. Bacon is following this convention, while Bacon.jQuery is not.
—
Reply to this email directly or view it on GitHub.
So yes, that's a good idea and should probably be implemented. That was the original idea, but there was some technical difficulty with Model. Should re-check.
In JavaScript, TitleCasedNames usually indicate a constructor — a function which should be called with a prefix
new
. Capital letter in the beginning also implies that the object can be extended (for instance, usingclass D extends C
syntax in CoffeeScript). Violating this rule might cause confusion and prevent objects from being easily extendable. Bacon is following this convention, while Bacon.jQuery is not.The text was updated successfully, but these errors were encountered: