dapperAuteur / dapperAuteur/todo_app

get_todos() Understand get_todos() function and all parts

Open
#1 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
JavaScript
Stars
0
Forks
0
PR merge metrics
No merged PRs in 30d

Description

function get_todos() {
var todos = new Array;
var todos_str = localStorage.getItem('todo');
if (todos_str !== null) {
todos = JSON.parse(todos_str);
}
return todos;
}

Contributor guide

No contributing guide indexed for this repository

Research direction

Start with the get_todos() function shown in the issue and inspect the repository for its callers and localStorage usage. The issue does not identify a documentation location or a specific change, so clarify the intended output before proceeding; done should mean the function's parts and behavior are clearly explained.

Written by the indexing model from the issue text.

Assessment

Tech stack
javascript
Domain
frontend
Issue type
Documentation
Difficulty
1/5
Estimated time
Under an hour
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
25/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.