Hacker News new | ask | show | jobs
by pitaj 2723 days ago
I was talking about JavaScript. In JavaScript there are no typed functions or arguments, so that information doesn't exist period.
1 comments

Right, so I guess I'm not understanding your point about why comparing two languages like this is ridiculous. Java has a full blown runtime reflection system (it's "types exist at runtime"). JS doesn't. So Java wins in the reflection category.
But in JS, reflection is pretty much not needed... I don't need to use reflection to see if an object has a quack method, or that I call it with the right types... I just call instance.quack() ... It's up to you as the developer to keep your interfaces and composition in line.

It's actually WAY easier than with C# or Java. Since the use-case of reflection itself is largely unnecessary.

Calling a method and seeing what happens is not a substitute for reflection. You can do that in Java too btw.