Это видео недоступно.
Сожалеем об этом.

#30 How to use JS Array Methods | JavaScript Full Tutorial

Поделиться
HTML-код
  • Опубликовано: 29 апр 2021
  • 🙂 SUBSCRIBE - hit the bell 🔔 and choose all: goo.gl/nYLZvz
    In this lesson let's learn all about the various Array methods. Array methods enable us to do some really cool things with arrays, for e.g. we can use these methods to find certain values in our array, and to even add, delete and change values in our array.
    JavaScript Array reference - [www.w3schools....](www.w3schools....)
    ------------------
    👍 HTML FULL TUTORIAL: shorturl.at/fiCMV
    👍 CSS FULL TUTORIAL: shorturl.at/clGSZ
    ------------------
    FACEBOOK: / devdreamercode
    TWITTER: / devdreamercode
    SUBSCRIBE and hit the BELL NOTIFICATION 🔔: goo.gl/nYLZvz
    ------------------
    Learn with Dev Dreamer! Step by step, easy to understand tutorials :-)

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

  • @user-uv5py8zi1w
    @user-uv5py8zi1w 3 года назад +10

    Great news. you've come back.
    Look forward to new videos about js, pls keep on, you're explaining it really well and easy to understand

  • @007deetee
    @007deetee 2 года назад +3

    What has taken me ages to try and learn you've taught me in 19 minutes and it finally makes sense, thank you.

  • @ENC77
    @ENC77 11 месяцев назад +1

    l can never thank you enough. l almost quit my web development, but your videos have made me understand concepts so easily. Thank you, Tonnes.

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

    You have a fantastic voice !

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

    you are a great teacher.

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

    I love how you make this things easy to understand. You deserve more than a follow ❤️

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

    Very clear video!

  • @mohammedelhoussni
    @mohammedelhoussni 2 года назад +1

    Thank you so much for this amazing video
    You are the best teacher ❤

  • @dilip8496
    @dilip8496 3 года назад +3

    Hi Dev dreamer please upload full we development project as you done in a css project plzzz Dev dreamer upload video

  • @Nothing-qp5wb
    @Nothing-qp5wb 2 года назад

    the background sound is so cool

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

    I don't understand it. You said split will turn an array into a string, however,
    For example,
    let newArray = 'Kimneithem, Lamneithem, Chongneo';
    console.log(newArray.split(','));
    console.log(typeof newArray);// string
    The result is still a string
    Am I missing something, here? Please🙏

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

      It looks like you did split method to new array in a console log and not to the actual array, as such it is still a string checked again in console log