Hacker News new | ask | show | jobs
by dsiegel2275 3236 days ago
I would say that you should consider using Elm instead of JS if you are building a web application and you care about reliability and maintainability.

With Elm you will have a ridiculously stronger guarantee that what you write won't break at runtime. The type system and compiler also allows you to refactor with confidence.

Vanilla JS, unless you write exhaustive unit tests, gives you neither of these benefits.