Hacker News new | ask | show | jobs
by ralfn 3977 days ago
Some of those features are only possible because Java is statically typed. They couldnt exist in the same way for "pure" JavaScript.
2 comments

But they can exist in a statically typed extension to javascript. See typescript in Visual Studio.
I've been playing with Typescript in both Visual Studio and Visual Studio Code and Intellisense is great.
Facebook is doing something that enables better IDE support for JS, so static typing isn't absolutely required, it just makes it a lot easier. I forgot the projects name though, the IDE part was also not open sourced back then.
Their optional typing for JS is called Flow, and they've open sourced an IDE of sorts (a suite of Atom plugins) called Nuclide (http://nuclide.io/).
That was the one, thanks.
I have never seen anyone successfully bolt type-checking onto an existing language. It is always painful to use. It usually requires ugly added syntax and you need a special compiler if the language isn't flexible enough.

Why not just use a different language altogether? One that was designed with static type checking from the ground up?

Maybe Facebook likes the pain, they also pushed PHP further than anyone else was willing to. Burning insane amounts of resources with a somewhat disappointing result.