Lecture 4: Arrays | JavaScript Full Course

Sdílet
Vložit
  • čas přidán 20. 06. 2024
  • ⭐️ Instagram : / shradhakhapra
    ⭐️ LinkedIn : / shradha-khapra
    Notes available at : drive.google.com/drive/folder...
    00:00 INTRO
    01:03 ARRAYS
    11:02 ARRAYS INDICES
    14:58 LOOPING OVER ARRAYS
    22:38 PRACTICE QS
    34:32 ARRAY METHODS
    56:26 PRACTICE QS

Komentáře • 518

  • @romimawandia4817
    @romimawandia4817 Před 3 měsíci +13

    Day 4 : Today, I learnt many things such as :
    1. How to create an Array in JS.
    2. we can also add multiple type of data to Array in JS.
    3. There are a lots of methods such as push(), pop(), slice(), splice(), shift(), unshift() etc.
    4. I solved all practice questions.
    .
    .
    .
    Thank You for this amazing lecture ❤

  • @soumiil
    @soumiil Před 3 měsíci +11

    At 31:00 it can also be done by for-of loop.
    let items = [250, 645, 300, 900, 50];
    for (let price of items) {
    let discount = price * 10 / 100;
    console.log(price-discount);
    }

    • @ealinakundu
      @ealinakundu Před 15 dny

      i also did the same way

    • @Vatsal74
      @Vatsal74 Před 4 dny

      If you read the question carefully it suggests to change value of array index. Your solution does provide the correct answer but it does not change the value of array.

    • @Vatsal74
      @Vatsal74 Před 4 dny

      let prices=[100,200,300,400,500,600,700]
      let j =0
      for (let i of prices ){
      let updatedPrice= i - ((i*10)/100);
      prices[j]=updatedPrice;
      j++;
      }
      console.log(prices)

  • @AhmedRaza-ty7zq
    @AhmedRaza-ty7zq Před 4 měsíci +17

    23:30
    //practice question
    let marks=[85,97,44,37,76,60];
    let sum=0,aver;
    for(let i=0;i

  • @ahnafahmedjarif
    @ahnafahmedjarif Před 7 měsíci +18

    truly outstanding explaination . I want a python course after this . Please 🙏🙏🙏🙏

  • @adityascoding
    @adityascoding Před 7 měsíci +77

    Biggest Superhero is A-Man Dattarwal ❤❤❤❤😊

  • @hassi_tech
    @hassi_tech Před 6 měsíci +3

    it was most imprtant concept to understand in whole programming

  • @ramphapal6610
    @ramphapal6610 Před 7 měsíci

    Various new things i learned on this tutorial,, this is very helpful to me,, thank you so much mam❤🎉

  • @asmashaikh3818
    @asmashaikh3818 Před 3 měsíci

    It was amazing lecture Thanks maam I have learnt so many new things about array as I'm beginner I'm not facing any problem to understand your Javascript series

  • @Cartoon_TV879
    @Cartoon_TV879 Před 7 měsíci +7

    This is a very helpful video for a beginner. Whatever related doubt I have, I read the topic, so I covered it from this video, and in the next few videos, I am still covering my doubts. Thank you for the video.😊❤

  • @ravishbisht502
    @ravishbisht502 Před 7 měsíci +1

    Nicely explained and the best past is question that u've solved

  • @ASMentor-gq5xz
    @ASMentor-gq5xz Před 7 měsíci +1

    Thank you for showering us with a lot of help

  • @sanvijanvisunder8741
    @sanvijanvisunder8741 Před 7 měsíci +10

    You deserve a lot more respect and love. You will be the most watched lecturer in India shortly... All the very best.

  • @user-be8nf9xe8t
    @user-be8nf9xe8t Před 7 měsíci

    Thank you Sharadha didi❤ for such an Amazing course of JS

  • @hemakiroula1014
    @hemakiroula1014 Před 7 měsíci

    Thank yor shradha could teach java framework also

  • @asmfiroz6557
    @asmfiroz6557 Před 7 měsíci +2

    fantastic, awesome presentation.

  • @peaceofmind2018
    @peaceofmind2018 Před 3 měsíci

    Great mam. You have bundle of knowledge

  • @rameshwarkendre3203
    @rameshwarkendre3203 Před 7 měsíci +4

    If i follow only shradh didi video lecture series definitely I will became a full stack developer soon....Thank you Lot...!

  • @ravigrover1923
    @ravigrover1923 Před 7 měsíci +13

    Please can you plan to cover callbacks and promises in the same detail and amazing explanation as your other videos. Best Wishes for this new series!!!

  • @dattatraywashivale9905
    @dattatraywashivale9905 Před 5 měsíci +3

    Excellent teaching from the scratch and easily understandable also.

  • @SharashEnrique
    @SharashEnrique Před 7 měsíci +1

    Mam thank you for give our-self your valuable or payable time

  • @learnwithnisha9
    @learnwithnisha9 Před 7 měsíci

    thank u didu for this lovely series.

  • @swatigiri98210
    @swatigiri98210 Před dnem

    Thank you sardha di...i am learning 2nd time this lectures and 2nd time all concepts are clear...❤❤❤❤

  • @aravinthdavid8837
    @aravinthdavid8837 Před 6 měsíci

    Thank you so much for your teaching theory concept is very easy to understant from chennai.

  • @absabith4946
    @absabith4946 Před 5 měsíci +1

    This platform is very COOL for any level students.BCS I am very grateful for my CGPA.Whole year,I saw and followed the guidelines of Sharda didi!!!!!I am also from Bangladseh?Go ahead Sharda didi!!!
    🤩🤩🤩🤩

    • @6packgaming280
      @6packgaming280 Před 4 měsíci

      Ooo Bangladeshi woh shradha hai Sharda nhi 😂🤣🤣

  • @ronakparjapati2264
    @ronakparjapati2264 Před 7 měsíci +7

    22:45
    Logic of array pactice ques :
    let marks = [85, 97, 44, 37, 76, 60];
    let sum = 0;
    let length = marks.length;
    for(let value of marks){
    sum += value;
    }
    let average = sum / length;
    console.log(average);

    • @daughter_of_chitkute0611
      @daughter_of_chitkute0611 Před 4 měsíci

      can we use for-in cuz I have used it and i've gotten an output?

    • @daughter_of_chitkute0611
      @daughter_of_chitkute0611 Před 4 měsíci

      let marks=[23,45,78,98,100];
      let avg=0,sum=0;
      for(let i in marks)
      {
      //console.log(marks[i]);
      sum=sum+marks[i];
      }
      let sizeee=marks.length;
      avg=sum/sizeee;
      console.log(sizeee," ",avg); // the code

  • @T4ACTION
    @T4ACTION Před 7 měsíci

    Superb platform for learning JavaScript course

  • @huzaifadeveloper
    @huzaifadeveloper Před 4 měsíci

    Recommended best teaching skills that how to convey the lecture for student . I highly appreciate your hard work epic stuff mam.

  • @varunsingh2996
    @varunsingh2996 Před 7 měsíci +56

    Best Course following since day1!!!❤

  • @learnwithnagma
    @learnwithnagma Před 7 měsíci +1

    Done didi 🤗✨.
    Thank you so much for your efforts 😊.

  • @cuteminired6550
    @cuteminired6550 Před 7 měsíci +1

    Thanks mam wonderful course 🙌

  • @anishrai091
    @anishrai091 Před 6 měsíci

    Love you Didi ❤❤,m to Norma graduation kia hu,ab javascript pe kam suru kar diya thoda thoda

  • @MDFaiz-il3ub
    @MDFaiz-il3ub Před 5 měsíci

    Thank you mam.You made it too easy for us.

  • @maazkhan3238
    @maazkhan3238 Před 4 měsíci +1

    Thanks a lo Shradda mam, your instructing way is so wonderful, you're 1 within the billions , love from Pakistan...❤❤❤

  • @nadiawardaikram4298
    @nadiawardaikram4298 Před 6 měsíci

    I like your every lecture & learn more & More.👌

  • @AnkitDevVlogr
    @AnkitDevVlogr Před 5 měsíci +1

    Thank you so mach mam for help poor students 🎉❤ i am proud studend of apna college

  • @btsarmyind-zt4ru
    @btsarmyind-zt4ru Před 2 měsíci +1

    Thanks ma'am ❤❤ because of you I am in right now royal and field, working as webdev lopper,I am 2020 passout student,,I got gate score 350,in 2023,ese2023mains qualified but I didn't take admission in mtech because my Target 🎯🎯 is scoring good as much possible

  • @XCALIBUR_XD
    @XCALIBUR_XD Před 3 měsíci

    Thx Maam , perfect video for me.

  • @rakeshvlog8499
    @rakeshvlog8499 Před 7 měsíci +12

    One of best lecture on youtube about javascript arrays

  • @lyfwithmaria5021
    @lyfwithmaria5021 Před 7 měsíci +4

    Thank you so much shradha mam I watched your html tutorial and css too now it's a tym of J's and I searched alot but the way you are teaching is totally outstanding love you mam from Pakistan

  • @aqsaali5103
    @aqsaali5103 Před 4 měsíci +1

    Blessed to have such a good tutors on yt 😊 👏🏻👏🏻

  • @NaveenAhuja-ej8yf
    @NaveenAhuja-ej8yf Před 7 měsíci

    Teaching style very nice Shradha. I like to study in fast track and your concept detailing is Good. :-)

  • @unzi_edits
    @unzi_edits Před 6 měsíci

    Watching it from Pakistan and just love the way Shradha didi explains the concepts

  • @m.shoaibomer7822
    @m.shoaibomer7822 Před 2 měsíci

    you are fantastic miss Shradha... excellent tutorials. lots of regards from Pakistan.

  • @BlockOffFabBlockofffab
    @BlockOffFabBlockofffab Před 3 měsíci

    Thank You Shradha Didi 😊

  • @user-df1nx1he6b
    @user-df1nx1he6b Před 5 měsíci

    Amazing course ❤

  • @Dragon55397
    @Dragon55397 Před 7 měsíci +4

    Your experiences and insights can motivate viewers to pursue their own passions, overcome challenges, and strive for personal growth.❤

  • @mohammedimran7617
    @mohammedimran7617 Před 6 měsíci +4

    practise question : 2
    const price = [250,645,300,900,50];
    let offPrice = 0;
    for (let val of price) {
    offPrice = val - (val * 10) / 100;
    console.log(offPrice);
    }

    • @_Samar-Coding9708
      @_Samar-Coding9708 Před 4 měsíci

      Brother, we had to store value in a array after discount.

  • @KrishnaAbhale-cn9qy
    @KrishnaAbhale-cn9qy Před 4 měsíci +3

    Thanks mam for details explain with basics. I am not cleaver as you. So please explain in basics also. ❤ as you explain. I hope you will do same for next upcoming videos. ❤❤❤❤❤❤❤❤❤❤❤❤❤❤

  • @bachumehta7833
    @bachumehta7833 Před 6 měsíci

    Best series of javascript

  • @swatigiri98210
    @swatigiri98210 Před měsícem

    Thank you so much sharadha di❤❤❤ for this amazing lectures i LEARNING slowly but i enyoy this every lecture ❤❤❤😊😊😊

  • @amararaja3171
    @amararaja3171 Před 7 měsíci

    Mam you helping so much for students thank you

  • @admalesiya6355
    @admalesiya6355 Před 3 měsíci

    Thank you shradha di😊

  • @alinaeem9156
    @alinaeem9156 Před 4 měsíci

    thank u so much madam for exceptional and fully detailed and pro lecture of js may god bless you ameen

  • @_SanikaJadhav
    @_SanikaJadhav Před 7 měsíci +2

    Thanks for your valuable support to the students❤

  • @sambangalore8291
    @sambangalore8291 Před 7 měsíci +2

    Bohot bohot shukriya apka thanks for your all valuable time and support.

  • @Wisdomizer
    @Wisdomizer Před 7 měsíci +52

    Little contribution for Shraddhaji 🙏
    00:00 INTRO
    01:03 ARRAYS
    11:02 ARRAYS INDICES
    14:58 LOOPING OVER AREAYS
    22:38 PRACTICE QUES
    34:32 ARRAY METHODS
    56:26 PRACTICE QUES

    • @shradhaKD
      @shradhaKD  Před 7 měsíci +59

      Thank you for the timestamps

    • @akashchauhan9551
      @akashchauhan9551 Před 7 měsíci +6

      shradha di please complete the series, dont leave in mid @@shradhaKD

    • @BilalNiaziAseel
      @BilalNiaziAseel Před 7 měsíci +1

      @@shradhaKDdidi please type sicrpt course karwa deyen main Pakistan sy ap ki video dekhta hon ap jisa koi nahe parhta

    • @Yesterday_i_ate_rat
      @Yesterday_i_ate_rat Před 7 měsíci +1

      ​@@BilalNiaziAseeldo you know JavaScript language

    • @BilalNiaziAseel
      @BilalNiaziAseel Před 7 měsíci

      @@Yesterday_i_ate_rat js bhe kar raha hon bhai

  • @thethreezdubbed
    @thethreezdubbed Před 7 měsíci

    Tip : splice is a allrounder it can do push , pop , shift , unshift , slice; Thank you Miss Shradha Khapra;

  • @alamtv3532
    @alamtv3532 Před 6 měsíci +1

    Your teaching is very good I am from end developer from Pakistan

  • @Asadneon
    @Asadneon Před 3 měsíci

    Thanks Mam for this amazing lecture

  • @PolytechnicManualAnswer13
    @PolytechnicManualAnswer13 Před 7 měsíci +4

    one like for mam ,
    outstanding videos

  • @user-ft5oe6ut6q
    @user-ft5oe6ut6q Před 3 měsíci

    your very good instructor for programing 😘❤.

  • @anshumanpandey109
    @anshumanpandey109 Před 6 měsíci +2

    27:48
    let items = [250,645,300,900,50]
    let index=0
    for(let pr of items){
    let offer = (pr-(pr*10/100));
    console.log(`The price at index ${index} is ${pr}`);
    console.log(`The price after offer is ${offer}`)
    index++
    }

  • @muhammadusmanali1838
    @muhammadusmanali1838 Před 6 měsíci

    Great Job!

  • @user-ql7pw7ld1n
    @user-ql7pw7ld1n Před měsícem

    Fantastic loved it

  • @arunnishad7733
    @arunnishad7733 Před 6 měsíci

    Very helpful lec...❤❤

  • @akshayjha2772
    @akshayjha2772 Před 7 měsíci +6

    Best playlist so far❤🎉

  • @sw.reations9360
    @sw.reations9360 Před 4 měsíci

    thanks mam😍 great sessions

  • @mdnadimmahmud7242
    @mdnadimmahmud7242 Před 7 měsíci

    Thank you so much ❤

  • @Growwithmayur
    @Growwithmayur Před 7 měsíci

    Best coding channel ever ❤

  • @AmaanABGamer
    @AmaanABGamer Před 7 měsíci +1

    I m here again to learn fresh class ❤🎉from Pakistan 🇵🇰

  • @pratikpandit4675
    @pratikpandit4675 Před 7 měsíci +3

    This is one of the best course on CZcams

  • @RamMukesh86
    @RamMukesh86 Před 6 měsíci +1

    Fell in love with JavaScript by learning from you❤

  • @sandeepgharge9518
    @sandeepgharge9518 Před 6 měsíci

    The way of explaining concepts are awesome. thanks for such a nice series.

  • @user-zf1bu9kn7i
    @user-zf1bu9kn7i Před 4 měsíci

    Apna college is doing great work...

  • @ByoliByol
    @ByoliByol Před 6 měsíci +3

    33:30
    other output is like that:-
    let items = [250, 645, 300, 900, 50]
    let a = 0;
    for (let i of items){
    console.log("Price of item is", i);
    i *= 10/100;
    console.log("10 % offer is", i);
    items[a] = items[a] - i;
    console.log("After apply offer price of item is", items[a]);
    a++;
    }

    • @anyda6311
      @anyda6311 Před měsícem

      You are absolutely right bro... Usne i*10/100 nahi kiya

    • @anyda6311
      @anyda6311 Před měsícem +1

      Yesss you are absolutely right bro... Usne i*10/100 nahi kiya

  • @user-pn4hx9px9j
    @user-pn4hx9px9j Před 6 měsíci

    very easy explanation.

  • @lakshminarayanabehera1138
    @lakshminarayanabehera1138 Před 5 měsíci

    Thank you 🙏🏻.

  • @arrucreativity
    @arrucreativity Před 4 měsíci

    Mam you explain really well 🙏🏻

  • @venkateshjoshi6255
    @venkateshjoshi6255 Před 3 měsíci

    31:21 we can use the function called .indexOf(price) function also in for off loop. no need to create another variable to track the index
    let itemPrice = [250, 645, 300, 900, 50];
    for (let price of itemPrice)
    {
    let offer = price * 0.1;
    itemPrice[itemPrice.indexOf(price)] = price - offer;
    }
    console.log(itemPrice);

  • @aarushbedi-kp3lh
    @aarushbedi-kp3lh Před 23 dny

    Didi app bohot achea trekea sea samjatea ho
    Well done 👍❤

  • @dudeitsdivyansh8694
    @dudeitsdivyansh8694 Před 7 měsíci +4

    After HTMl i will watch your java script series and learn that JS 🙂

  • @sheikhabdulahad27867
    @sheikhabdulahad27867 Před 7 měsíci

    Thank you shradha mam.

  • @PhosphorousKite
    @PhosphorousKite Před 2 dny

    Thank you so much😃

  • @mohsinakhtar5568
    @mohsinakhtar5568 Před měsícem

    Thank you Teacher Shradha

  • @sabirpathan430
    @sabirpathan430 Před 7 měsíci

    Thanks such a good video

  • @PriyankaYadav-nm7ei
    @PriyankaYadav-nm7ei Před 6 měsíci

    Thanks a lot

  • @Allinone-wg6rw
    @Allinone-wg6rw Před měsícem

    superb teacher amazing deeply explaination miss big respect love from karachi pakistan

  • @AhmedRaza-ty7zq
    @AhmedRaza-ty7zq Před 4 měsíci +1

    Awesome video😎😎👍👍

  • @imperfectKarryLive
    @imperfectKarryLive Před 3 měsíci

    Amazing Explanation. Shradha Please Make Video on Machine Learning

  • @secretsexp9931
    @secretsexp9931 Před 7 měsíci +1

    Thank you ❤

  • @musharafkhan7935
    @musharafkhan7935 Před 6 měsíci

    Your teaching Method is sooooo...... Good Icant explain
    ❤❤❤❤❤❤❤❤❤❤❤
    I can say that your Method of teaching is so beautifull as like you ❤

  • @ftbnishantbotxgaming2608

    recenty i have passed my 12th class and under 1 month i have leanerd front end thank u mam

  • @toheedkhalid2853
    @toheedkhalid2853 Před 6 měsíci

    After this playlist mam please make video on two to three practise project for better understanding

  • @Suraj-qs4ym
    @Suraj-qs4ym Před 6 měsíci

    REGULAR WATCHING YOUR VIDEO LOVE FROM इंडीया थँक्यू वरी MUCH FOR THISE VALUABLE COURSE

  • @skillfulmind960
    @skillfulmind960 Před 7 měsíci

    Just Awesome

  • @muhammadharis916
    @muhammadharis916 Před 7 měsíci +1

    I will comment on Every Video and complete this Tutorial till End.😊
    And I want to connect with those Who wants to complete too...
    #let's_connect..😊
    .
    I am following since 1st lecture. ❤

  • @muhammadashfaq5267
    @muhammadashfaq5267 Před 7 měsíci

    Thank you..

  • @ronakparjapati2264
    @ronakparjapati2264 Před 7 měsíci +2

    28:15
    Logic of second practice Ques :
    let prices = [250, 645, 300, 900, 50];
    let newarr = [];
    let k = 0;
    for(let value of prices){
    let off = value / 10;
    value = value - off;
    newarr[k] = value;
    k++;
    }
    console.log(newarr);

  • @Edits20199
    @Edits20199 Před měsícem

    Thank you 👍

  • @Samiullah-vd6sm
    @Samiullah-vd6sm Před 7 měsíci

    Great teacher