Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save GuillaumeDaviid/8b64326b2d64daa6a1047acc5e1691b1 to your computer and use it in GitHub Desktop.

Select an option

Save GuillaumeDaviid/8b64326b2d64daa6a1047acc5e1691b1 to your computer and use it in GitHub Desktop.
Angular : signal calculé
const completedTasksCount = computed(() => {
const tasks = getAllTasks();
return tasks.filter(task => task.isCompleted).length;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment