#25 How to use the JS For Loop | JavaScript Full Tutorial

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

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

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

    Best explanation I’ve seen so far!! Thanks so much. I still want to understand more about the initialiser but is becoming more clear.

  • @AdityaYadav-eq5wu
    @AdityaYadav-eq5wu 2 года назад +8

    Bro, You are doing a great job, and I appreciate your efforts. I specifically search your channel for tutorials so, don't stop you will be great youtuber

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

    Absolutely loving this course. You explain everything so well! this is one of the best explanations out there

  • @alive6293
    @alive6293 2 месяца назад

    Thank you for making it so simple...

  • @user-cm4pz2om7e
    @user-cm4pz2om7e 3 года назад +2

    your chancel is god send! thanks for everything u do. I'm following colt's JS course and loop was confusing the hell out out of me but u explained it way much better in my opinion.

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

      Thank you so much! Appreciate the love and support! 🙂👍

  • @kaijyuu_ka-ju48
    @kaijyuu_ka-ju48 9 месяцев назад

    Very helpful, thank you

  • @windowsuser2162
    @windowsuser2162 2 месяца назад +1

    You are amazing

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

    Where does this -1 came from plz ??

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

    Great job! 🧐

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

    Please reply me i don't understand this ${characters[i]}

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

    Can I turn the following into Ternary Operator? If so how?
    if (i === character.length - 1) {
    info += `and ${characters[i]}, `;
    } else {
    info += `${characters[i]}, `;
    }

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

    thanks!

  • @SourSnail70
    @SourSnail70 19 дней назад

    pls come back to youtube

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

    ( length - 1 ) how dose it work ? i didn't get this part

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

      If I'm correct; here is my understanding of it. You know, since the array is four based on the number of items stored in CHARACTERS. Meaning, characters.length = 4 since that's the length of the array if we are to check it. Hence, character.length - 1 = 3, just like saying 4 - 1 = 3. Hope you understand.

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

      Also, I guess what he meant in that if statement is that; if i = 3 OR i === characters.length - 1 also know as I === 4 - 1 which is = 3. We should loops around that or iterate(i++), iterate or gives us Sonic, Tails and Mario then append them to info += ` and ${characters[i], in this place. characters [i] which is equal to 3 based on characters.length -1 (or 4-1) is Luigi. That's how I guess he did. Not sure tho. I hope he sees this or anybody and correct if I'm wrong. Thanks!

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

      The answer you're looking for lies in the index start value. First value of every array index is defined as 0(zero), so an array of four values would be indexed as 0, 1, 2, 3.
      Example;
      let names = ['Mike', 'Brad', 'John', 'Stupid Trump'];
      Total length of this array would be 4 as there are 4 values(names) in it but as every array index start from 0, Mike would be indexed as 0 and Trump would be indexed as 3.
      So when you say ".length -1", you are basically saying it to stop when the index value comes to 3 (4-1 or 'array length -1) which is equal to the last value of the index (3) which is Trump in this example case.
      Hope this helps!

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

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

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

    👍

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

    const colours = ["red", "Orange", "Blue", "Pink", "black"]
    for (let i = 0; i < colours.length; i++) {
    console.log(`${colours[i]} is my fav colour`);
    }
    //Output:-
    // red is my fav colour
    // Orange is my fav colour
    // Blue is my fav colour
    // Pink is my fav colour
    // black is my fav colour

  • @ca-lt1fc
    @ca-lt1fc 3 года назад

    can anyone explain why all of a sudden the variable began with const instead of let that we have been using with mostly everything?

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

      I guess he used const since we are not going to be reassigning or redeclaring the array or characters.