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

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 มี.ค. 2021
  • 🙂 SUBSCRIBE - hit the bell 🔔 and choose all: goo.gl/nYLZvz
    In this lesson let's learn all JS Loops by starting with the for loop. The for loop is the most common type of loop in JavaScript. Let's learn how to use a for loop to loop through a list of values and do something with them, for e.g. using the values with some custom text.
    By the end of this lesson you will be comfortable and able to start using for loops in your projects.
    ------------------
    👍 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 :-)

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

  • @AdityaYadav-eq5wu
    @AdityaYadav-eq5wu 2 ปีที่แล้ว +7

    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

  • @Herson_ricardo_alarcon
    @Herson_ricardo_alarcon 7 หลายเดือนก่อน +1

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

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

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

  • @user-cm4pz2om7e
    @user-cm4pz2om7e 2 ปีที่แล้ว +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  2 ปีที่แล้ว

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

  • @kaijyuu_ka-ju48
    @kaijyuu_ka-ju48 6 หลายเดือนก่อน

    Very helpful, thank you

  • @adomicarts
    @adomicarts 3 ปีที่แล้ว

    thanks!

  • @cauenathanmiguelcastro2463
    @cauenathanmiguelcastro2463 3 ปีที่แล้ว +1

    Great job! 🧐

    • @DevDreamer
      @DevDreamer  3 ปีที่แล้ว

      Thank you 🙂👍

  • @freguenshoodjean5841
    @freguenshoodjean5841 11 หลายเดือนก่อน +1

    Where does this -1 came from plz ??

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

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

  • @Mahek7704
    @Mahek7704 3 ปีที่แล้ว +1

    👍

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

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

  • @dilip8496
    @dilip8496 3 ปีที่แล้ว

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

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

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

    • @ultronsam1214
      @ultronsam1214 ปีที่แล้ว +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 ปีที่แล้ว

      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!

  • @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 ปีที่แล้ว

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