Commit 68a2c2fb authored by Gilad Peleg's avatar Gilad Peleg

reduce redundant filter & without syntax

parent 81d044dc
...@@ -18,14 +18,12 @@ var app = app || {}; ...@@ -18,14 +18,12 @@ var app = app || {};
// Filter down the list of all todo items that are finished. // Filter down the list of all todo items that are finished.
completed: function () { completed: function () {
return this.filter(function (todo) { return this.where({completed:true});
return todo.get('completed');
});
}, },
// Filter down the list to only todo items that are still not finished. // Filter down the list to only todo items that are still not finished.
remaining: function () { remaining: function () {
return this.without.apply(this, this.completed()); return this.where({completed:false});
}, },
// We keep the Todos in sequential order, despite being saved by unordered // We keep the Todos in sequential order, despite being saved by unordered
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment