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

Поделиться
HTML-код
  • Опубликовано: 3 янв 2021
  • Build a Todo list app in React JS. We will use map, filter and find functions along with useState in React JS.
    source code - github.com/piyush-eon/react-t...

Комментарии • 47

  • @vaishnavilondhe9920
    @vaishnavilondhe9920 2 года назад +3

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

  • @jaisharma545
    @jaisharma545 3 года назад +10

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

    • @RoadsideCoder
      @RoadsideCoder  3 года назад +1

      Glad you liked it bro.. Comments like these motivate a lot!

    • @akshatgupta1092
      @akshatgupta1092 2 года назад

      @@RoadsideCoder doing a great job brother

  • @suprabhatkumar5478
    @suprabhatkumar5478 Год назад

    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

  • @anshulkori9926
    @anshulkori9926 Год назад

    Very nicely explained.!

  • @jainababah6718
    @jainababah6718 Месяц назад

    Found what i was looking for ❤

  • @excellencevictorkingsley6921
    @excellencevictorkingsley6921 Год назад +1

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

  • @pushpabhandari8848
    @pushpabhandari8848 2 года назад

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

  • @shreyash8273
    @shreyash8273 Год назад

    Nice Explanation

  • @AK-ww3yo
    @AK-ww3yo Год назад

    Really great tutorial. Thanks.

  • @nallaparajuamareshvarma8471
    @nallaparajuamareshvarma8471 Год назад

    Great video bro

  • @vickydarlinn
    @vickydarlinn Год назад

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

  • @faizanraza558
    @faizanraza558 Год назад

    You are a Legend Bro! Keep it up

  • @yogu99
    @yogu99 2 года назад

    great video sir, really helped lot.......

  • @ebenezergodwyll9902
    @ebenezergodwyll9902 Год назад

    What extension gives the UseState Structure?

  • @nileshnilu7902
    @nileshnilu7902 2 года назад

    Finally I got the video👏

  • @dynamo7731
    @dynamo7731 3 года назад

    Thank you sir

  • @PriyanshuKumar-uu4ug
    @PriyanshuKumar-uu4ug Год назад

    thanks piyush

  • @webdev676
    @webdev676 Год назад

    Greate stuffs

  • @imasunflowerlilfunny3353
    @imasunflowerlilfunny3353 10 месяцев назад +1

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

  • @wajidkhankhan1954
    @wajidkhankhan1954 3 года назад +2

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

    • @RoadsideCoder
      @RoadsideCoder  3 года назад

      Thanks brother. Sure I will make a playlist in future.

    • @shivamjha.56
      @shivamjha.56 Год назад

      @@RoadsideCoder where is part 1 of it ?

    • @RoadsideCoder
      @RoadsideCoder  Год назад

      @@shivamjha.56 You can check my channel

  • @BTSARMY-pf1qq
    @BTSARMY-pf1qq Год назад

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

  • @francisseneve2934
    @francisseneve2934 3 года назад

    MERN STACK tutorial I love your videos

  • @mrrishiraj88
    @mrrishiraj88 2 года назад

    👍

  • @siddharth3419
    @siddharth3419 2 года назад

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

    • @RoadsideCoder
      @RoadsideCoder  2 года назад

      Just basic javascript.

    • @siddharth3419
      @siddharth3419 2 года назад

      @@RoadsideCoder sir is this playlist enough for learning react and giving interviews?

    • @RoadsideCoder
      @RoadsideCoder  2 года назад +2

      yes this will provide you all the basics, however I will recommend to follow my movie app project too!

  • @ExpatTraderFX
    @ExpatTraderFX Год назад

    36:33

  • @competitiveprogramming316
    @competitiveprogramming316 Год назад

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

  • @siva.....45
    @siva.....45 Год назад

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

    • @RoadsideCoder
      @RoadsideCoder  Год назад

      You have to add the validation check for that

  • @satwiksv2749
    @satwiksv2749 2 дня назад

    ❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤

  • @rajkirankelangi5751
    @rajkirankelangi5751 Год назад

    Please make video on same todo app with react-redux

  • @vishnusingh2300
    @vishnusingh2300 5 месяцев назад

    32

  • @raki0125
    @raki0125 Год назад

    why spread operatorn like and comment pls

  • @VigneshKumarK
    @VigneshKumarK 2 года назад +3

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

  • @abcc_tech
    @abcc_tech Год назад +1

    This is the most readily described, which is really beneficial to newcomers.
    I have added below codes to play with local storage.
    let init;
    if(localStorage.getItem('todos')===null){
    init = []
    }
    else {
    init = JSON.parse(localStorage.getItem('todos'))
    }
    useEffect(()=>{
    localStorage.setItem('todos',JSON.stringify(todos))
    },[todos])