JavaScript Project for Beginners: Get User Input & Display on Page

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 พ.ย. 2024

ความคิดเห็น • 10

  • @ByteGrad
    @ByteGrad  2 ปีที่แล้ว

    Mastering JavaScript is crucial if you want to be a modern, professional developer: th-cam.com/video/qVmpJDQxucE/w-d-xo.html

  • @readbeforeyoureply64
    @readbeforeyoureply64 2 ปีที่แล้ว +1

    You just helped a beginner web developer here man, thank you so much. Keep going👊

  • @theladyivy
    @theladyivy ปีที่แล้ว

    I have been trying to figure out how to do this for days! Your video was very consice and easy to understand, thank you!

  • @28santagabo
    @28santagabo 8 หลายเดือนก่อน

    Thanks for the video! it took a little bit to implement it in my page because I wanted the input to display in a different page but I figured it out

  • @theladyivy
    @theladyivy ปีที่แล้ว

    What code editor do you use? Looks better than mine, I might have to upgrade 😅

  • @arshad1781
    @arshad1781 2 ปีที่แล้ว +1

    Thanks

  • @annablaster
    @annablaster ปีที่แล้ว

    How do you remove the li style

  • @readbeforeyoureply64
    @readbeforeyoureply64 2 ปีที่แล้ว

    if i may ask why didn't you use an array?

    • @ByteGrad
      @ByteGrad  2 ปีที่แล้ว

      An array is possible. You would take the name from the input and put it in an array. Then loop over the array to output each name on the page.
      The reason I didn’t do it is because it’s an extra step, but certainly a good, clean-code possibility to do here.

    • @readbeforeyoureply64
      @readbeforeyoureply64 2 ปีที่แล้ว +1

      @@ByteGrad Okay, i understand.