Skip to content

Instantly share code, notes, and snippets.

@becca-bailey
Created December 30, 2018 01:40
Show Gist options
  • Save becca-bailey/c61c5e0128e948dfc65e60544ac30b9f to your computer and use it in GitHub Desktop.
Save becca-bailey/c61c5e0128e948dfc65e60544ac30b9f to your computer and use it in GitHub Desktop.
var todos = []
function addTodo(task) {
todos.push({
task: task,
completed: false,
});
}
addTodo("Feed my cat");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment