Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 408 Bytes

4.2 - HTTP Servers Assignment.md

File metadata and controls

21 lines (17 loc) · 408 Bytes

Week 04 - 4.2 | HTTP Servers

Assignment #1 - Trying to code a todo app and store data into the array

Assignment #2 - Trying to code a filesystem based todo app and store data into the file

Assignment #3 - Trying to code a filesystem based todo app with users

let users = {
    1: {
        todos: []
    }, 
    2: {
        todos: []
    }, 
    3: {
        todos: []
    }
}