Todo List app in React JS | map, filter and find functions in | Workshop Day 2 | Roadside Coder

preview_player
Показать описание
Build a Todo list app in React JS. We will use map, filter and find functions along with useState in React JS.

Рекомендации по теме
Комментарии
Автор

this is the single most sorted explanation I came across. so simple to understand.

vaishnavilondhe
Автор

Hi Piyush, at 1:00:39 where you said we need to return after setting the state, that proved to be a game changer for me. Thanks a lot

suprabhatkumar
Автор

i recently find your channel and just get amazed by your content thanks for your awsome content.

jaisharma
Автор

This is the best YouTube tutorial ever.i give you 5🌞 sir.

excellencevictorkingsley
Автор

What extension gives the UseState Structure?

ebenezergodwyll
Автор

thank you, really helpful please create more videos on front-end interview !!!

pushpabhandari
Автор

Beautifully explained... especially I liked the way....1st go with simple examples then go for complexes...

vickydarlinn
Автор

Sir it's given that npx command is not found.Even though I've installed node.js packages.
How to solve this problem sir.

BTSARMY-pfqq
Автор

literally couldn't understand the edit button part..its so confusing ..with all these diff parameter names

imasunflowerlilfunny
Автор

What are the prerequisites for this series ? If it has any thn do you have that in channel ?

siddharth
Автор

Hi I am from Bangladesh I love your videos. Please can you make a playlist for zero to job ready developer.

wajidkhankhan
Автор

todos.map() how map function knows it need to print new todo not whole array again?

competitiveprogramming
Автор

Good work.. but bro when I click the edit button why its accept the empty string also

siva.....
Автор

MERN STACK tutorial I love your videos

francisseneve
Автор

Please make video on same todo app with react-redux

rajkirankelangi
Автор

Most confusing....in last part....next time try different app todo todo ....everywhere todo...

VigneshKumarK
Автор

why spread operatorn like and comment pls

raki
Автор

This is the most readily described, which is really beneficial to newcomers.

I have added below codes to play with local storage.

let init;


init = []
}
else {
init =
}

useEffect(()=>{
localStorage.setItem('todos', JSON.stringify(todos))
}, [todos])

abcc_tech