javascript-todo-list-tutorial
javascript-todo-list-tutorial copied to clipboard
Can we include a section/sub-tutorial on "refactoring"?
I've never seen a tutorial that includes refactoring... and yet this is one of the most important skills to have in TDD-topia!
thinking we could revisit the update
function and make the parameters alphabetical.
e.g:
update(action, model, data)
becomes:
update(action, data, model)