In some examples (“An Introduction to Elm”) the input values are not tied back to the model values, while in other programs, they are:
view model =
input [ onInput Name ] []
view model =
input [ onInput Name, value model.name ] []
What are the reasons to link or not link the value to the stored model value?