For all of the different concepts that support access modifiers, such as fields, properties, methods and classes, which access modifiers are implied if not specified?
Which access modifiers are implied when not specified?
37.3k Views Asked by Sam At
2
There are 2 best solutions below
4

I do not agree that
Everything in a class is public if not specified.
Everything is public, even if private is used. Just look at the transpiled code. Private annotated methods will be available public. Only transpiling will throw errors. Both public and private will be converted to <Object>.prototype.funcName
Everything in a
class
ispublic
if not specified. Everything in amodule
is private unlessexport
keyword is used.