Open
Description
The JavaScript feature to set class members as private by prefixing their name with #
is now supported in all modern browsers. This issue tracks its impact on our coding conventions.
Things to look into:
- do our conventions currently allow the syntax in JS code? Should they?
- do our conventions currently allow the syntax in TS code? Should they?
- TypeScript obviously has its own private member syntax (via the
private
keyword). We should see if they've expressed an opinion about how that syntax will interact with the JS syntax.
- TypeScript obviously has its own private member syntax (via the