/todo_app

Simple to do app

Primary LanguageJavaScript

TODO App

Simpel to do list app

By Roman Kolivashko, Diego Serafico, Brad Prettyman

Technologies Used

  • HTML
  • CSS
  • JavaScript
  • JQuery

Description

This application will record task, update it, remove it when the task is done

Describe: ToDoList();

Test: It creates an empty object

  • Code: this.tasks = {};
  • Expected Output: {...};

Test: It sets objectId to 0

  • Code: currentId = 0;
  • Expected Output: 0

Test: It creates a method to assign unique Id

  • Code: currentId += 1;
  • Expected Output: this.currentId = 1;

Test: It creates a method to find onject by Id

  • Code: task[id] = [id];
  • Expected Output: this.task[id] = "id";

Test: It deletes the object

  • Code: currentId += 1;
  • Expected Output: this.currentId = 1;

Test: It checks to see if the task is done

  • Code: isDone = true;
  • Expected Output: true;

Setup/Installation Requirements

  • Run git clone https://github.com/romankolivashko/todo_app.git
  • Open index.html file in browser.

How to access the app from the web

  • Follow the link here

Known Bugs

  • NO bugs have been reported yet

License

The MIT License (MIT)

Copyright (c) 2021 Roman Kolivashko

Contact Information