TODO LIST USING JAVASCRIPT

Поділитися
Вставка
  • Опубліковано 8 лис 2024

КОМЕНТАРІ • 21

  • @somanathkakade6908
    @somanathkakade6908 Рік тому

    Excellent teacher, Amazing explanation.

  • @tekskilldev8310
    @tekskilldev8310 2 роки тому +1

    You are an excellent teacher. You have made todo CRUD app logically and efficiently. Great Job.

  • @sahiraahamed
    @sahiraahamed 2 роки тому +1

    Super 👏.. Amazing explanation for the beginner.. 🔥😍

  • @uzbekdev4980
    @uzbekdev4980 2 роки тому +1

    Hello buddy Good job. Really impressive

  • @lordring8908
    @lordring8908 2 роки тому

    Thank you for the detailed instructions. I want when I press the enter button, new todo item will be added.
    please guide how to do it

    • @codelab7185
      @codelab7185  2 роки тому +1

      Thank you, to add enter key write this
      textInputField.addEventListener("keypress",(e)=>{
      If(e.key ==="Enter") {
      Here copy paste all code inside addButton.addEventListenr()
      }
      })

  • @uzbekdev4980
    @uzbekdev4980 2 роки тому +1

    Just a little suggestion. It would be awesome if you improve video sound quality it feels like there is echo coming back. Other than that everything is perfect

    • @codelab7185
      @codelab7185  2 роки тому +3

      Hi thank you for your suggestion about audio echo, i have not noticed that before, i will correct it from my next video I will watch your video, good luck with your channel

  • @data9224
    @data9224 2 роки тому

    IT WAS AMAZING! THANK YOU VERY MUCH! YOU HELPS A LOT

  • @sreejapm2709
    @sreejapm2709 Рік тому

    Thank u so much Sir.

  • @josephmusinguzi2360
    @josephmusinguzi2360 Рік тому

    Thanks for this good job, but how can i integrate local storage to this

  • @uzbekdev4980
    @uzbekdev4980 2 роки тому +1

    I also built To Do list and posted video for that. If you are interested you can go and check out how I implemented it

  • @Misica11000
    @Misica11000 Рік тому

    Can you do update,but that data stayed down?

  • @courses4life934
    @courses4life934 2 роки тому

    Can you please upload code to github and share it in the description

    • @codelab7185
      @codelab7185  2 роки тому

      I added the source code link now, please check

    • @courses4life934
      @courses4life934 2 роки тому

      @@codelab7185 Thank you. One more suggestion to get view is that you try doing projects that are trending for interview and js polyfills based questions. These will get you more views in my opinion.

  • @Uncaught_in_promise
    @Uncaught_in_promise Рік тому

    Wrong approach. You need to manipulate items via unique ID. Anyway, for educational approach could be used to learn JS basics.