Elm
Functional language that compiles to js
No runtime errors in practice. No null. No undefined is not a function.
You must handle all cases, statically typed
Functions
Elm has implicit functions, cant change global variables in its
No loops in elm, currying by default(give one argument returns curried ft)
Chaining so no unneeded variables(like lodash chain)
Types
Would have to deal with if mix every time
Maybe
Json
Must decode and type JSON, must write decoder
Build for Production
Last updated