diff --git a/public/docs/_examples/homepage-todo/ts/app/todo_app.ts b/public/docs/_examples/homepage-todo/ts/app/todo_app.ts
index 5688868b73..996a003d0d 100644
--- a/public/docs/_examples/homepage-todo/ts/app/todo_app.ts
+++ b/public/docs/_examples/homepage-todo/ts/app/todo_app.ts
@@ -23,7 +23,7 @@ export class TodoApp {
   ];
 
   get remaining() {
-    return this.todos.reduce((count: number, todo: Todo) => count + +!todo.done, 0);
+    return this.todos.filter((todo: Todo) => !todo.done).length;
   }
 
   archive(): void {