Lecture 4: Arrays | JavaScript Full Course

  Рет қаралды 1,003,538

Shradha Khapra

Shradha Khapra

Күн бұрын

Пікірлер: 766
@AhmedRaza-ty7zq
@AhmedRaza-ty7zq 11 ай бұрын
23:30 //practice question let marks=[85,97,44,37,76,60]; let sum=0,aver; for(let i=0;i
@CyberByte044
@CyberByte044 6 ай бұрын
@naman2619
@naman2619 6 ай бұрын
How can i get average marks using prompt values??
@KrishnaMohan-qm3nc
@KrishnaMohan-qm3nc 6 ай бұрын
​@@naman2619 alert('AVERAGE MARKS - '+aver)
@hanzalaafaq3945
@hanzalaafaq3945 5 ай бұрын
let marks=[85,97,44,37,76,60] let avg=(marks[0]+ marks[1]+marks[2]+marks[3]+marks[4]+marks[5])/marks.length console.log(avg)
@AhmedRaza-ty7zq
@AhmedRaza-ty7zq 5 ай бұрын
@@hanzalaafaq3945 Good
@shresthshukla3061
@shresthshukla3061 Жыл бұрын
00:01 Arrays are important data structures used in web development to store different types of data. 01:58 Arrays are a better approach for storing multiple values compared to creating multiple variables 05:49 Arrays in JavaScript can hold multiple values or items of different types. 07:46 Arrays in JavaScript can be accessed by the length property. 11:58 Arrays in JavaScript allow accessing values based on index. 14:02 Arrays in JavaScript can be accessed by index and values can be changed. 18:01 Arrays in JavaScript can be accessed using indexes starting from zero. 19:51 For loops and array iteration in JavaScript 23:52 Creating an array and calculating the sum of its elements 26:00 Using arrays to calculate average marks and apply discounts on prices. 29:59 Using the for loop to track array index 32:12 Understanding how values are copied inside variables 35:58 Arrays in JavaScript have methods that allow us to change the array in place or return a new array. 37:53 Arrays in JavaScript can be used to store and manipulate sets of values. 42:06 Concatenating arrays in JavaScript using the concat() method. 44:19 The unshift method is used to add elements at the start of an array. 48:09 The slice method in JavaScript is used to extract a portion of an array, based on the specified starting and ending indexes. 50:22 Deleting and adding elements in an array using indexes 54:19 Arrays in JavaScript can be manipulated using the splice method. 56:25 Removing and replacing elements in an array
@shreyankcode5902
@shreyankcode5902 Жыл бұрын
👍🔥🔥
@ecogamers9763
@ecogamers9763 Жыл бұрын
kitna time hai
@abdullahmughal6211
@abdullahmughal6211 5 ай бұрын
ya bkchodi ka kya faida
@ShaistaFaisal-b3l
@ShaistaFaisal-b3l Ай бұрын
❤❤❤❤Thank you so much
@amankushwaha8509
@amankushwaha8509 28 күн бұрын
bro kis ai ka use kiye ?
@ronakparjapati2264
@ronakparjapati2264 Жыл бұрын
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 11 ай бұрын
can we use for-in cuz I have used it and i've gotten an output?
@daughter_of_chitkute0611
@daughter_of_chitkute0611 11 ай бұрын
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
@unzi_edits
@unzi_edits Жыл бұрын
Watching it from Pakistan and just love the way Shradha didi explains the concepts
@chuzimeeru
@chuzimeeru 26 күн бұрын
same
@sanvijanvisunder8741
@sanvijanvisunder8741 Жыл бұрын
You deserve a lot more respect and love. You will be the most watched lecturer in India shortly... All the very best.
@adityascoding
@adityascoding Жыл бұрын
Biggest Superhero is A-Man Dattarwal ❤❤❤❤😊
@XCALIBUR_XD
@XCALIBUR_XD 11 ай бұрын
No doubt
@dipanshuchouhan1837
@dipanshuchouhan1837 7 ай бұрын
Chupbe bihari
@gyan-punj
@gyan-punj 5 ай бұрын
Bilkul sahi
@socialguider
@socialguider 12 күн бұрын
Good and highly recommended course Love from PAKISTAN
@socialguider
@socialguider 11 күн бұрын
@highlighted
@soumiil
@soumiil 10 ай бұрын
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 7 ай бұрын
i also did the same way
@Vatsal74
@Vatsal74 7 ай бұрын
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 7 ай бұрын
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)
@HadiaRafique-s4e
@HadiaRafique-s4e 6 ай бұрын
@@Vatsal74 Yeah..I also notice the same thing.
@BeautifulRoofGarden
@BeautifulRoofGarden 5 ай бұрын
thanks bro you can give me right method to find %
@Wisdomizer
@Wisdomizer Жыл бұрын
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 Жыл бұрын
Thank you for the timestamps
@akashchauhan9551
@akashchauhan9551 Жыл бұрын
shradha di please complete the series, dont leave in mid @@shradhaKD
@BilalNiaziAseel
@BilalNiaziAseel Жыл бұрын
@@shradhaKDdidi please type sicrpt course karwa deyen main Pakistan sy ap ki video dekhta hon ap jisa koi nahe parhta
@Jishanthegodev
@Jishanthegodev Жыл бұрын
​@@BilalNiaziAseeldo you know JavaScript language
@BilalNiaziAseel
@BilalNiaziAseel Жыл бұрын
@@Jishanthegodev js bhe kar raha hon bhai
@rakeshvlog8499
@rakeshvlog8499 Жыл бұрын
One of best lecture on youtube about javascript arrays
@Learnwithsaif-wp2qr
@Learnwithsaif-wp2qr 4 ай бұрын
mana apky sab practice questions khud kia apni logic sa mtlb ap na bht acha smjhaya ha thank you so much am big fan of you from pakistan ❤❤❤❤❤❤❤❤❤❤
@sbipoRam6012
@sbipoRam6012 Жыл бұрын
If i follow only shradh didi video lecture series definitely I will became a full stack developer soon....Thank you Lot...!
@code_with_sharjeel
@code_with_sharjeel 6 ай бұрын
Bhool ja 😅
@asmashaikh3818
@asmashaikh3818 10 ай бұрын
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
@developertools95
@developertools95 Жыл бұрын
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
@1shotISTIAQ
@1shotISTIAQ 5 ай бұрын
27:04 much easier solution: let prices = [250, 645, 300, 900, 50]; for(let i=0; i
@swatigiri98210
@swatigiri98210 7 ай бұрын
Thank you sardha di...i am learning 2nd time this lectures and 2nd time all concepts are clear...❤❤❤❤
@hassi_tech
@hassi_tech Жыл бұрын
it was most imprtant concept to understand in whole programming
@syedmohammedakberhussaini5553
@syedmohammedakberhussaini5553 4 ай бұрын
56:31 Can also be done by using splice( ) method let companies=["bloomberg","Microsoft","Uber","Google","IBM","Netflix"]; remove=companies.splice(0,1); replace=companies.splice(1,1,"Ola"); add=companies.splice(5,0,"Amazon"); console.log(companies);
@dattatraywashivale9905
@dattatraywashivale9905 Жыл бұрын
Excellent teaching from the scratch and easily understandable also.
@SheikhMohammedAli04
@SheikhMohammedAli04 Ай бұрын
Thank You To Shrada Mam, For Your I Have Really Have Enhanced My JavaScript Knowledgev ❤.
@creativecapacity
@creativecapacity Ай бұрын
I found the code a bit complex to understand, but when i watched it again and again, i got it. Thanks Shradha dii for your efforts!
@romimawandia4817
@romimawandia4817 11 ай бұрын
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 ❤
@dipanshuchouhan1837
@dipanshuchouhan1837 7 ай бұрын
Baju hat bihari
@ApnaNEWZen
@ApnaNEWZen 5 ай бұрын
Khudko dekh
@ahsanmohsin8735
@ahsanmohsin8735 Жыл бұрын
Teacher, I challenge you. You will never make this five-project number 1 feedback. number 2 calculator. Number 3 analog clock and digital clock. Number 4 makes a chatting website and number 5 is your personal project but most importantly, it is most useful for every student. Are you a challenged accepted teacher? Yes or not hahaha haha !😼😼😼😼😏! and you are my best teacher ever.
@mohammedimran7617
@mohammedimran7617 Жыл бұрын
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 11 ай бұрын
Brother, we had to store value in a array after discount.
@PolytechnicManualAnswer13
@PolytechnicManualAnswer13 Жыл бұрын
one like for mam , outstanding videos
@maazkhan3238
@maazkhan3238 Жыл бұрын
Thanks a lo Shradda mam, your instructing way is so wonderful, you're 1 within the billions , love from Pakistan...❤❤❤
@absabith4946
@absabith4946 Жыл бұрын
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 11 ай бұрын
Ooo Bangladeshi woh shradha hai Sharda nhi 😂🤣🤣
@anisharyal09
@anisharyal09 Жыл бұрын
27:17 let prices = [250, 645, 300, 900,50]; for(i=0; i
@vikassingh-oh8ms
@vikassingh-oh8ms Жыл бұрын
let arr = [85,97,44,37,76,60]; let add =0; for(let num of arr){ add= add+num; } let len = arr.length; let average = add/len; console.log(average);
@fatimatariq5222
@fatimatariq5222 6 ай бұрын
First time I learn JavaScript from your videos and after learning this I have solved all practice Questions successfully.🙃
@kamaleshpramanik7645
@kamaleshpramanik7645 2 ай бұрын
Thank you very much Shradha Madam .. You make it simple.
@ronakparjapati2264
@ronakparjapati2264 Жыл бұрын
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);
@kazisalahuddintonim7347
@kazisalahuddintonim7347 Жыл бұрын
Bro how abt that ? let a = [250,645,300,900,50] ; for(let i =0; i
@ronakparjapati2264
@ronakparjapati2264 Жыл бұрын
@@kazisalahuddintonim7347 what abt?
@ashwanimaurya8255
@ashwanimaurya8255 5 ай бұрын
Best learning platform Javascript
@huzaifadeveloper
@huzaifadeveloper 11 ай бұрын
Recommended best teaching skills that how to convey the lecture for student . I highly appreciate your hard work epic stuff mam.
@ahsanazhar3963
@ahsanazhar3963 Ай бұрын
32:00 let array = [250,645,300,900,50] let OFF = 0; for(let rslt of array){ OFF = rslt/10 OFF = rslt - OFF; console.log(OFF); }
@abeerafazal6700
@abeerafazal6700 4 ай бұрын
ap ne mere data structures k concept bhi clear kr diye.. jo muj sir ki smjh nai arai thi 4 months me wo yaha samjh agayi
@Clash_clips_008
@Clash_clips_008 26 күн бұрын
indeed
@Priyank_Rana
@Priyank_Rana Ай бұрын
31:00 let cost = [250, 645, 300, 900, 50]; for(let offer of cost){ let save =(offer *10)/100; let less = offer - save; console.log("Value after offer=", less); } we can also use for of loop for this questions
@KrishnaAbhale-cn9qy
@KrishnaAbhale-cn9qy 11 ай бұрын
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. ❤❤❤❤❤❤❤❤❤❤❤❤❤❤
@btsarmyind-zt4ru
@btsarmyind-zt4ru 9 ай бұрын
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
@dhananjaythakur5190
@dhananjaythakur5190 Жыл бұрын
Q.2 //Using for of loop For ( let i of product ) { Let offer = i / 10 ; i = i - offer ; console.log( i ); }
@abhii29
@abhii29 Ай бұрын
let mp=[250,645,300,900,50]; console.log("marked price of the articles"); for(let val of mp) console.log(val); console.log("discounted price"); for(let i=0;i
@thronegamer
@thronegamer 5 ай бұрын
your teaching is very good i think most people are just ignore your playlist because of 1hour duration of all videos but for your teaching i am acknowledge you big Thanks from my side and those who are read my comment so plz check this playlist
@Chaturrr
@Chaturrr 3 ай бұрын
It's my first time javascript learning and it's gonna amazing thank you so much shraddha mam❤❤
@ByoliByol
@ByoliByol Жыл бұрын
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 9 ай бұрын
You are absolutely right bro... Usne i*10/100 nahi kiya
@anyda6311
@anyda6311 9 ай бұрын
Yesss you are absolutely right bro... Usne i*10/100 nahi kiya
@venkateshjoshi6255
@venkateshjoshi6255 10 ай бұрын
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);
@varunsingh2996
@varunsingh2996 Жыл бұрын
Best Course following since day1!!!❤
@rushikeshphalle6769
@rushikeshphalle6769 Жыл бұрын
Bhai abhi cource launch kie hue hi kotanw din hai 😂 excitement me galti kr dega
@chiragyadav8680
@chiragyadav8680 Жыл бұрын
Me too
@m.shoaibomer7822
@m.shoaibomer7822 10 ай бұрын
you are fantastic miss Shradha... excellent tutorials. lots of regards from Pakistan.
@vivek-dy5mo
@vivek-dy5mo 7 күн бұрын
You are best teacher india ❤❤❤🎉🎉🎉
@AtharvChaurasia-w1l
@AtharvChaurasia-w1l Ай бұрын
27:00 const price=[250, 645, 300, 900, 50] function custom(){ for(n in price){ price[n]=price[n]*90/100 } console.log(price) }
@hardikchhipa4120
@hardikchhipa4120 Жыл бұрын
Practice set - 1 Question no. 2 (27:00) Better way to do that question: let items = [250, 645, 300, 900, 50]; for (let i = 0; i < items.length; i++){ offer = items[i]/10; newPrice = items[i] - offer; console.log(`After reducing the 10% price from the array of items our offer value is = ${newPrice}`); }
@neeturawat757
@neeturawat757 9 ай бұрын
//2nd qs let items=[250,645,300,900,50]; let newitem=[]; for(let x=0; x
@Penpaper_749
@Penpaper_749 Ай бұрын
I did the same .
@aqsaali5103
@aqsaali5103 Жыл бұрын
Blessed to have such a good tutors on yt 😊 👏🏻👏🏻
@scaryghost7904
@scaryghost7904 11 ай бұрын
Wh
@ravishbisht502
@ravishbisht502 Жыл бұрын
Nicely explained and the best past is question that u've solved
@NishantSingh-d1t
@NishantSingh-d1t 10 ай бұрын
2X per kon kon dekhta hai...videos..😀
@bindasragini
@bindasragini 10 ай бұрын
Me
@Atulkumarpandey-ps1xr
@Atulkumarpandey-ps1xr 10 ай бұрын
Me2😂
@rizwanpatel8969
@rizwanpatel8969 10 ай бұрын
1.5x
@mehran_khan159
@mehran_khan159 9 ай бұрын
Same here with holding screen
@Janapada_huduga_uk
@Janapada_huduga_uk 9 ай бұрын
🖐😂
@IdioteGaming
@IdioteGaming Ай бұрын
i did remove and add pratice by splice method......that was way easy that other and easy to remember hell yeah
@thethreezdubbed
@thethreezdubbed Жыл бұрын
Tip : splice is a allrounder it can do push , pop , shift , unshift , slice; Thank you Miss Shradha Khapra;
@muhammadharis916
@muhammadharis916 Жыл бұрын
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. ❤
@TechBalu
@TechBalu 7 ай бұрын
// Practice set 1 let marks=[85,34,68,26,96] let total=0; let leng=marks.length for(let i=0;i
@alamtv3532
@alamtv3532 Жыл бұрын
Your teaching is very good I am from end developer from Pakistan
@vggaming0077
@vggaming0077 Жыл бұрын
Jay Shree Ram bro🙏
@AnkitDevVlogr
@AnkitDevVlogr Жыл бұрын
Thank you so mach mam for help poor students 🎉❤ i am proud studend of apna college
@nehaamir6139
@nehaamir6139 Жыл бұрын
33:00 second practice question let items=[250,645,300,900,50]; for(let i of items){ console.log(i); let final_price=i-(i*(10/100)); console.log(`the final price is ${final_price}`); }
@AvinashKumar-p4d
@AvinashKumar-p4d 11 ай бұрын
Apna college is doing great work...
@armaansaif6382
@armaansaif6382 Ай бұрын
Very Helpful.... Thank You Shradha Mam....❤️
@fmsschool9550
@fmsschool9550 8 күн бұрын
excellent teaching method for concept clearing
@Dragon55397
@Dragon55397 Жыл бұрын
Your experiences and insights can motivate viewers to pursue their own passions, overcome challenges, and strive for personal growth.❤
@brainfood-k7
@brainfood-k7 4 ай бұрын
tried codewithharry javascript program but couldnt understand anything as it bit fast and complicated but the way shrddha mam explain everything anybody can understand it easily..
@BasmaKamal-b6d
@BasmaKamal-b6d Жыл бұрын
let price = [ 100,200,300,400,500,600,700,800,900,1000]; let cutPrice = price.map(value => value- 10%value); console.log(cutPrice); solution of practice q2 of array
@babarbobybabar-zj4pl
@babarbobybabar-zj4pl Жыл бұрын
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
@pratikpandit4675
@pratikpandit4675 Жыл бұрын
This is one of the best course on KZbin
@priyanshpanjabi1169
@priyanshpanjabi1169 5 ай бұрын
thank you shradha di for make this videos😊😊
@umairumairakbar
@umairumairakbar 15 күн бұрын
let num=[85,97,44,37,76]; let sum=0; let final=0; for(let i of num){ sum=sum+i final=sum / num.length }; console.log(final);
@peaceofmind2018
@peaceofmind2018 10 ай бұрын
Great mam. You have bundle of knowledge
@MuhammadAbid-lw8sy
@MuhammadAbid-lw8sy 11 ай бұрын
6. Write a JavaScript program that calculates the income tax for a person based on their annual income. Use the following tax brackets: Income up to $10,000: 5% tax Income from $10,001 to $50,000: 10% tax Income from $50,001 to $100,000: 15% tax Income above $100,000: 20% tax Additionally, provide a $500 deduction for each dependent. // Example: let annualIncome = 75000; let numberOfDependents = 3; Calculate the total tax, taking into account both the income brackets and the deductions for dependents.
@ImranAli-e8q7l
@ImranAli-e8q7l 12 күн бұрын
sum = 0; let marks = [85,97,44,37,76,60] for (let i=0; i
@rohitgajmer805
@rohitgajmer805 6 ай бұрын
let marks=[82,91,65,84,78,68] let sum =0; for(let i=0; i
@ealinakundu
@ealinakundu 7 ай бұрын
Q1.Array of marks-[85,97,44,37,76,60].Find the Average marks of Student. //Ans: let marks = [85, 97, 44, 37, 76, 60] let sum=0; for(let i of marks){ sum+=i } console.log(sum) console.log(`The average marks of student is ${sum/marks.length}`) Q2.For a given Array with price of 5 items-[250,645,300,900,50].All the item have an offer of 10% off for an item. Change the array after applying the offer. // Ans- let items=[250,645,300,900,50] for(let val of items){ let offer=val/10; let newitems=val-=offer; console.log(`After applying the offer of 10% the new array: ${newitems}`) }
@T4ACTION
@T4ACTION Жыл бұрын
Superb platform for learning JavaScript course
@sambangalore8291
@sambangalore8291 Жыл бұрын
Bohot bohot shukriya apka thanks for your all valuable time and support.
@ASMentor-gq5xz
@ASMentor-gq5xz Жыл бұрын
Thank you for showering us with a lot of help
@SufyanAli-i1x
@SufyanAli-i1x 10 ай бұрын
your very good instructor for programing 😘❤.
@BigCartoonTV789
@BigCartoonTV789 Жыл бұрын
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.😊❤
@aarushbedi-kp3lh
@aarushbedi-kp3lh 8 ай бұрын
Didi app bohot achea trekea sea samjatea ho Well done 👍❤
@ahnafahmedjarif
@ahnafahmedjarif Жыл бұрын
truly outstanding explaination . I want a python course after this . Please 🙏🙏🙏🙏
@harshasshet6755
@harshasshet6755 5 ай бұрын
It is already there
@musharafkhan7935
@musharafkhan7935 Жыл бұрын
Your teaching Method is sooooo...... Good Icant explain ❤❤❤❤❤❤❤❤❤❤❤ I can say that your Method of teaching is so beautifull as like you ❤
@Satheesh-ns5qi
@Satheesh-ns5qi 5 ай бұрын
wow...shakthiman in avegers multiverse
@omtank-fy1te
@omtank-fy1te 6 ай бұрын
I WOULD LIKE TO SAY THAT CODING IS FAMOUS IN INDIA BECAUSE OF SHRADHA MAM HATES OFF THIS WOMAN 😇💛 WHO AGREE WITH ME ? LIKE BUTTON
@lyfwithmaria5021
@lyfwithmaria5021 Жыл бұрын
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
@anishrai091
@anishrai091 Жыл бұрын
Love you Didi ❤❤,m to Norma graduation kia hu,ab javascript pe kam suru kar diya thoda thoda
@IdealTech971
@IdealTech971 6 ай бұрын
Thank you mam Ap ka smjhana ka andaz both acha ha
@vijaykumar-nl6nh
@vijaykumar-nl6nh 10 ай бұрын
Mam this is something that i made without any help and after solving this got so much confidence. let prices = [250,645,300,900,50] console.log(prices) for (i=0 ; i
@CodersCanvas-r5q
@CodersCanvas-r5q 11 ай бұрын
absolutely you are best may allah grant with all blessings (ameen)🥰🥰
@bachumehta7833
@bachumehta7833 Жыл бұрын
Best series of javascript
@Allinone-wg6rw
@Allinone-wg6rw 8 ай бұрын
superb teacher amazing deeply explaination miss big respect love from karachi pakistan
@shivakrishnareddy1306
@shivakrishnareddy1306 8 ай бұрын
let items = [250, 645, 300, 900, 50]; let offer = 10; let finalPrice; for(let i = 0; i < items.length; i++) { finalPrice = items[i] / offer; items[i] = items[i] - finalPrice; } console.log(items);
@KamalPoudel-h1f
@KamalPoudel-h1f 5 ай бұрын
Support and Love from Nepal ❤
@gkadda573
@gkadda573 11 ай бұрын
lagta hai mam avengers ki bahut badi fan h 😀😀😁
@Islam-x1x5b
@Islam-x1x5b 8 ай бұрын
Lagta tou ha
@dbzsenpai
@dbzsenpai Жыл бұрын
You Are the best Coding Teacher Ever 🥲
@shivakrishnareddy1306
@shivakrishnareddy1306 8 ай бұрын
let marks = [85,97,44,37,76,60]; let sum = 0; for(let i=0; i < marks.length ;i++) { sum = sum + marks[i]; } let avg = sum/marks.length; console.log(avg);
@SharashEnrique
@SharashEnrique Жыл бұрын
Mam thank you for give our-self your valuable or payable time
@Emerging_World5361
@Emerging_World5361 3 ай бұрын
# Answer of Practice Question let arr=[250,645,300,900,50] for (let val of arr){ val_1 = val - (val / 10); console.log(`original Price = ${val} Offered Price =${val_1}`) }
@basicmathswithparamitamaam1749
@basicmathswithparamitamaam1749 11 ай бұрын
let prices = [250, 645, 300, 900, 50]; let final= []; for (let i=0; i
Lecture 5: Functions & Methods | JavaScript Full Course
1:09:10
Shradha Khapra
Рет қаралды 1 МЛН
BRAIN ROT | Why You Are Losing Control Of Your Brain?
17:40
Aevy TV
Рет қаралды 1,2 МЛН
GIANT Gummy Worm #shorts
0:42
Mr DegrEE
Рет қаралды 152 МЛН
FASTEST Way to Learn Coding and ACTUALLY Get a Job
6:32
Rajeev Bera
Рет қаралды 31 М.
Lecture 3: Loops and Strings | JavaScript Full Course
1:21:09
Shradha Khapra
Рет қаралды 1,3 МЛН
Lecture 2 : Operators and Conditional Statements | JavaScript Full Course
1:16:47
Lecture 6 : DOM - Document Object Model | JavaScript Full Course | Part 1
1:22:31
5 Mistakes Beginner Web Developers Make (Avoid These)
12:09
CodeWithHarry
Рет қаралды 168 М.
[MEMBERS EXCLUSIVE] SINGING BAND FROM NIFT | India's Got Latent
12:13
India's Got Latent Clips
Рет қаралды 372 М.