Skip to content

Instantly share code, notes, and snippets.

@hyber1z0r
Last active August 12, 2020 18:28
Show Gist options
  • Save hyber1z0r/b15ab27a814dce74fbd1adf6cb1454ac to your computer and use it in GitHub Desktop.
Save hyber1z0r/b15ab27a814dce74fbd1adf6cb1454ac to your computer and use it in GitHub Desktop.
let completedAll = true;
for (let i = 0; i < todos.length; i++) {
if (!todos[i].completed) {
completedAll = false;
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment