Learn JS METHOD CHAINING in 5 minutes! ⛓

Поделиться
HTML-код
  • Опубликовано: 8 ноя 2024

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

  • @BroCodez
    @BroCodez  10 месяцев назад +4

    // Method Chaining = Calling one method after another
    // in one continuous line of code.
    let username = window.prompt("Enter your username: ");
    // ----- NO METHOD CHAINING -----
    /*
    username = username.trim();
    let letter = username.charAt(0);
    letter = letter.toUpperCase();
    let extraChars = username.slice(1);
    extraChars = extraChars.toLowerCase();
    username = letter + extraChars;
    console.log(username);
    */
    // ----- METHOD CHAINING -----
    username = username.trim().charAt(0).toUpperCase() + username.trim().slice(1).toLowerCase();
    console.log(username);

  • @halcyon__r3289
    @halcyon__r3289 9 месяцев назад +6

    You have a nice intonation.
    You dont sound monotone.
    It makes it very pleasant and guideful to watch

  • @unfunnyhahahaha
    @unfunnyhahahaha 10 месяцев назад +5

    you got me intro programming!

  • @LiziBenia
    @LiziBenia 8 месяцев назад +1

    Amazing course, absolutely love it! thank you very much for making coding so easy to do and understand!

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

    Syperb explanation. Thank you!

  • @SAGARSINGH-ej4rj
    @SAGARSINGH-ej4rj 10 месяцев назад +3

    Love ❤ from India

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

    ishowspeed and bro code are only youtuber's whose content is whole other level!

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

      Ishowcode would have been another good channel name

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

      imagine speed rage in his next stream if he finds out🤣.

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

    Thanks Bro code!❤

  • @piotrmazgaj
    @piotrmazgaj 3 месяца назад

    This is my seal. I have watched the entire video, understood it, and I can explain it in my own words, thus I have gained knowledge. This is my seal.

  • @eda._.1581
    @eda._.1581 3 месяца назад

  • @JeromyDBall
    @JeromyDBall 7 месяцев назад

    It a 3 hit combo. Boom Boom Boom.