JavaScript for loops

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

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

  • @elvisgamuatachu2304
    @elvisgamuatachu2304 5 лет назад +13

    @8:52-->"People who do that, they are a little bit odd. We dont talk to them too much". This made my day. I laughed my ass off. This was however a great tutorial. Thanks Steve

  • @_V__.
    @_V__. 6 лет назад +11

    I’ve been learning Javascript for the past 4 months. Your videos are by far the best at explaining these methods. Heavy on the details, even though you never wander off difficulty-wise.
    Also, I really appreciate the pace you’re keeping throughout your videos, it’s well needed.

  • @BADDYGaming
    @BADDYGaming 5 лет назад +3

    I'm watching js tutorials for about 2 years ago, but you have the best voice and the best explications. Keep up the good work!

  • @achengster4
    @achengster4 4 года назад +1

    Your voice is as soothing as Ron Swanson. It’s soothing to listen to you talk about coding. The attention to detail is amazing quality content. Great Work! Gold Star!

  • @el5880
    @el5880 5 лет назад +3

    you explain things better than courses I've paid for. you deserve more views.

  • @wandelendetak12
    @wandelendetak12 4 года назад +1

    I must say, now I'm getting it... My teacher just isn't that capable of explaining this... you on the other hand. Thanks for the vids!

  • @alberts6096
    @alberts6096 6 лет назад +12

    you son of gun... you sir have a great voice, I don't know why it is nice to listen to. Maybe you should apply for voice acting/reading books :)

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

    You are a good teacher. I'm following an Udemy course on learning javascript. I feel like most of the time I'm just copying code without understanding "the why, and how" behind it. I'm really getting to grips with the fundamentals thanks to you Steve. God Bless you sir.

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

    So, so helpful. Everything I need and nothing more. My deepest thanks.

  • @lenomarin3484
    @lenomarin3484 8 лет назад +2

    I like how you explain everything in detail. This has been very helpful!

  • @thickerthoughts9107
    @thickerthoughts9107 4 года назад

    This dude is every student's dream teacher in every possible classroom scenario. You should be paid big bucks.

    • @jeff-creations
      @jeff-creations 3 года назад

      Absolutely, I agree 100%. Great teacher with a voice that doesn't stress me out. Just wish I had known about this video series back a few months ago.

  • @mbarekamehry8788
    @mbarekamehry8788 5 лет назад

    I 've watched many many tutorials to understand for loop but I could. and you did a really amazing job explaining it simply!! Thank you.

  • @rotrose7531
    @rotrose7531 4 года назад

    Your explanation makes a mere for loop shining again. Thank you as always.

  • @gustavoantoniooliveira5387
    @gustavoantoniooliveira5387 4 года назад

    Your videos is very good, speaking simple and slowly. I'm brazilian and that was very usefull for me.

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

    Heartening to see The Big Lebowski reference here :)

  • @nuregal7699
    @nuregal7699 4 года назад

    Great videos Steve thanks

  • @mboed1011
    @mboed1011 6 лет назад +1

    Thanks a lot. Great tutorial. You are helping a lot of students.

  • @raulcollantes182
    @raulcollantes182 6 лет назад +1

    great work and flow in all your videos!

  • @rasulali4690
    @rasulali4690 4 года назад

    Thank you so much mr. Perfect Voice! Can't buy you a beer just yet, so I don't skip ads. Less that I can do

  • @yunusmile
    @yunusmile 4 года назад

    thank you for the videos man, keep uploading i will like every new video you upload, it is the least i can do

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

    Brilliant tutorials !!!

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

    Thank you for very practical and detail explanation.

  • @riazurrahman4819
    @riazurrahman4819 4 года назад

    Thanks .. you are great. you make it easy to understand ...

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

    You are the best teacher Thanks a lot

  • @bellarose1606
    @bellarose1606 6 лет назад +1

    thank u for your thorough explanation

  • @1988branko
    @1988branko 6 лет назад +1

    keep up the good work :)

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

    Thank you!

  • @ChrisTian-ox5nr
    @ChrisTian-ox5nr 4 года назад

    Berry Good Thank You!

  • @Icode2395
    @Icode2395 11 месяцев назад

    in loops what is the difference between declare a variable with let or var?

    • @SteveGriffith-Prof3ssorSt3v3
      @SteveGriffith-Prof3ssorSt3v3  11 месяцев назад +1

      With let a closure is created and the variable exists only inside the loop { }.
      With var, the variable exists anywhere inside the function that contains the loop.

  • @AKMALIST15
    @AKMALIST15 6 лет назад +2

    Thanks man, I like the tone and step by step instructions. I'm having difficulties with FreeCodeCamp JavaScript basic algorithm section . So your videos will help a lot!

    • @justaprogrammer3764
      @justaprogrammer3764 5 лет назад +1

      This is exactly why im also here, the FreeCodeCamp curriculum throws at you so many things at once and expects you to understand everything. Im also here because of it and am currently going to learn everything from this channel as support. Steves way of teaching is unprecedented, in m opinion.

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

    Thank you sir

  • @dlofiasco
    @dlofiasco 4 года назад

    Question: Both methods are correct, but I'm just wondering for industry praciticing standards, is it better to test i (index) against a variable OR is it better to just use array.length
    In the case of this example:
    for (let i = 0; i < names.length; i++){
    console.log(names[i]);
    }
    OR
    let testCondition = names.length;
    for(let i = 0; i < testCondition; i++){
    consoel.log (names[i]);
    }
    Or does it matter and it's up to preference?

    • @SteveGriffith-Prof3ssorSt3v3
      @SteveGriffith-Prof3ssorSt3v3  4 года назад +1

      The second one is better for performance.

    • @dlofiasco
      @dlofiasco 4 года назад

      @@SteveGriffith-Prof3ssorSt3v3 Thanks for the prompt response.
      One more question! Do the single quotes around the object property isn't necessary are they? I have read that they only needed if the property has white space or if the programmer will be using a keyword that may be associated with one of the built-in functions?

    • @SteveGriffith-Prof3ssorSt3v3
      @SteveGriffith-Prof3ssorSt3v3  4 года назад +1

      @@dlofiasco are you talking about object properties? With quotes you are using a string. Without quotes you are using a variable.

    • @dlofiasco
      @dlofiasco 4 года назад +1

      @@SteveGriffith-Prof3ssorSt3v3 Makes sense. I'm used to seeing VS code print out the property as well when you print out the object even though there are no quotation marks on them.
      Thanks for the help!

  • @johnywhy4679
    @johnywhy4679 4 года назад

    If you're confused, start with this simpler loop:
    for (let i = 0; i < 10; i++){
    console.log(i)
    }

  • @thickerthoughts9107
    @thickerthoughts9107 4 года назад

    Can we see you build a project from front to back from scratch?

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

    I changed it to i-- and it spammed undefined til my computer stop😂 it felt like I made virus lol

  • @yarik83men51
    @yarik83men51 5 лет назад

    +++

  • @mohamedkhodary7831
    @mohamedkhodary7831 5 лет назад

    qu'est-ce que c'est 😂😂😂