No, I have not yet met another JavaScript project that uses this notation.
Something like this is useful in JavaScript, though, because unlike in many languages Class.methodName
would refer to classmethods like String.fromCharCode
, not instance methods which is what you are more often talking about. The method invoked by myinstance.methodName
would be not MyClass.methodName
but MyClass.prototype.methodName
, and MyClass.prototype
is an annoyance to keep typing.
(The standard JS library confuses this by making many instance methods also have a corresponding classmethod. But they're different functions.)
is it proepr for me to refer to instance methods in comments/documentation as SomeClass#someMethod?
Do what you like/find most readable. There's no standard here.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…