|
|
|
|
|
by randomdata
1099 days ago
|
|
> though in 99% of the cases, just use a class While that is a fair statement, I've been reading a lot of Typescript code lately and it seems in 99% of cases the selected solution is to use top level functions and globals to avoid the nesting hell class introduces, albeit introducing the global hell in the process. In practice, 'just use a class' doesn't overcome the human element. Javascript was on the right track originally, but then veered off into the weeds for some reason. I appreciate you pointing out how it can be done. Although the solution is very much second class citizen, sadly. This certainly isn't going to wean developers away from global hell. Hopefully Javascript/Typescript can make some strides in improving this going forward. |
|
We are talking about runtime class creation with dynamic methods, while still adding proper static types. There aren't many language allow this level of flexibility.
You can probably disallow prototype use with existing tools if that's desired, but it is an advanced tool for advanced use cases (which still exist).