23:30 //practice question let marks=[85,97,44,37,76,60]; let sum=0,aver; for(let i=0;i
@CyberByte0446 ай бұрын
@naman26196 ай бұрын
How can i get average marks using prompt values??
@KrishnaMohan-qm3nc6 ай бұрын
@@naman2619 alert('AVERAGE MARKS - '+aver)
@hanzalaafaq39455 ай бұрын
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-ty7zq5 ай бұрын
@@hanzalaafaq3945 Good
@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 Жыл бұрын
👍🔥🔥
@ecogamers9763 Жыл бұрын
kitna time hai
@abdullahmughal62115 ай бұрын
ya bkchodi ka kya faida
@ShaistaFaisal-b3lАй бұрын
❤❤❤❤Thank you so much
@amankushwaha850928 күн бұрын
bro kis ai ka use kiye ?
@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_chitkute061111 ай бұрын
can we use for-in cuz I have used it and i've gotten an output?
@daughter_of_chitkute061111 ай бұрын
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 Жыл бұрын
Watching it from Pakistan and just love the way Shradha didi explains the concepts
@chuzimeeru26 күн бұрын
same
@sanvijanvisunder8741 Жыл бұрын
You deserve a lot more respect and love. You will be the most watched lecturer in India shortly... All the very best.
@adityascoding Жыл бұрын
Biggest Superhero is A-Man Dattarwal ❤❤❤❤😊
@XCALIBUR_XD11 ай бұрын
No doubt
@dipanshuchouhan18377 ай бұрын
Chupbe bihari
@gyan-punj5 ай бұрын
Bilkul sahi
@socialguider12 күн бұрын
Good and highly recommended course Love from PAKISTAN
@socialguider11 күн бұрын
@highlighted
@soumiil10 ай бұрын
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); }
@ealinakundu7 ай бұрын
i also did the same way
@Vatsal747 ай бұрын
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.
@Vatsal747 ай бұрын
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-s4e6 ай бұрын
@@Vatsal74 Yeah..I also notice the same thing.
@BeautifulRoofGarden5 ай бұрын
thanks bro you can give me right method to find %
@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 Жыл бұрын
Thank you for the timestamps
@akashchauhan9551 Жыл бұрын
shradha di please complete the series, dont leave in mid @@shradhaKD
@BilalNiaziAseel Жыл бұрын
@@shradhaKDdidi please type sicrpt course karwa deyen main Pakistan sy ap ki video dekhta hon ap jisa koi nahe parhta
@Jishanthegodev Жыл бұрын
@@BilalNiaziAseeldo you know JavaScript language
@BilalNiaziAseel Жыл бұрын
@@Jishanthegodev js bhe kar raha hon bhai
@rakeshvlog8499 Жыл бұрын
One of best lecture on youtube about javascript arrays
@Learnwithsaif-wp2qr4 ай бұрын
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 Жыл бұрын
If i follow only shradh didi video lecture series definitely I will became a full stack developer soon....Thank you Lot...!
@code_with_sharjeel6 ай бұрын
Bhool ja 😅
@asmashaikh381810 ай бұрын
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 Жыл бұрын
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
@1shotISTIAQ5 ай бұрын
27:04 much easier solution: let prices = [250, 645, 300, 900, 50]; for(let i=0; i
@swatigiri982107 ай бұрын
Thank you sardha di...i am learning 2nd time this lectures and 2nd time all concepts are clear...❤❤❤❤
@hassi_tech Жыл бұрын
it was most imprtant concept to understand in whole programming
@syedmohammedakberhussaini55534 ай бұрын
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 Жыл бұрын
Excellent teaching from the scratch and easily understandable also.
@SheikhMohammedAli04Ай бұрын
Thank You To Shrada Mam, For Your I Have Really Have Enhanced My JavaScript Knowledgev ❤.
@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!
@romimawandia481711 ай бұрын
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 ❤
@dipanshuchouhan18377 ай бұрын
Baju hat bihari
@ApnaNEWZen5 ай бұрын
Khudko dekh
@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 Жыл бұрын
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-Coding970811 ай бұрын
Brother, we had to store value in a array after discount.
@PolytechnicManualAnswer13 Жыл бұрын
one like for mam , outstanding videos
@maazkhan3238 Жыл бұрын
Thanks a lo Shradda mam, your instructing way is so wonderful, you're 1 within the billions , love from Pakistan...❤❤❤
@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!!! 🤩🤩🤩🤩
@6packgaming28011 ай бұрын
Ooo Bangladeshi woh shradha hai Sharda nhi 😂🤣🤣
@anisharyal09 Жыл бұрын
27:17 let prices = [250, 645, 300, 900,50]; for(i=0; i
@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);
@fatimatariq52226 ай бұрын
First time I learn JavaScript from your videos and after learning this I have solved all practice Questions successfully.🙃
@kamaleshpramanik76452 ай бұрын
Thank you very much Shradha Madam .. You make it simple.
@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 Жыл бұрын
Bro how abt that ? let a = [250,645,300,900,50] ; for(let i =0; i
@ronakparjapati2264 Жыл бұрын
@@kazisalahuddintonim7347 what abt?
@ashwanimaurya82555 ай бұрын
Best learning platform Javascript
@huzaifadeveloper11 ай бұрын
Recommended best teaching skills that how to convey the lecture for student . I highly appreciate your hard work epic stuff mam.
@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); }
@abeerafazal67004 ай бұрын
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_00826 күн бұрын
indeed
@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-cn9qy11 ай бұрын
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-zt4ru9 ай бұрын
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 Жыл бұрын
Q.2 //Using for of loop For ( let i of product ) { Let offer = i / 10 ; i = i - offer ; console.log( i ); }
@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
@thronegamer5 ай бұрын
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
@Chaturrr3 ай бұрын
It's my first time javascript learning and it's gonna amazing thank you so much shraddha mam❤❤
@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++; }
@anyda63119 ай бұрын
You are absolutely right bro... Usne i*10/100 nahi kiya
@anyda63119 ай бұрын
Yesss you are absolutely right bro... Usne i*10/100 nahi kiya
@venkateshjoshi625510 ай бұрын
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 Жыл бұрын
Best Course following since day1!!!❤
@rushikeshphalle6769 Жыл бұрын
Bhai abhi cource launch kie hue hi kotanw din hai 😂 excitement me galti kr dega
@chiragyadav8680 Жыл бұрын
Me too
@m.shoaibomer782210 ай бұрын
you are fantastic miss Shradha... excellent tutorials. lots of regards from Pakistan.
@vivek-dy5mo7 күн бұрын
You are best teacher india ❤❤❤🎉🎉🎉
@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 Жыл бұрын
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}`); }
@neeturawat7579 ай бұрын
//2nd qs let items=[250,645,300,900,50]; let newitem=[]; for(let x=0; x
@Penpaper_749Ай бұрын
I did the same .
@aqsaali5103 Жыл бұрын
Blessed to have such a good tutors on yt 😊 👏🏻👏🏻
@scaryghost790411 ай бұрын
Wh
@ravishbisht502 Жыл бұрын
Nicely explained and the best past is question that u've solved
@NishantSingh-d1t10 ай бұрын
2X per kon kon dekhta hai...videos..😀
@bindasragini10 ай бұрын
Me
@Atulkumarpandey-ps1xr10 ай бұрын
Me2😂
@rizwanpatel896910 ай бұрын
1.5x
@mehran_khan1599 ай бұрын
Same here with holding screen
@Janapada_huduga_uk9 ай бұрын
🖐😂
@IdioteGamingАй бұрын
i did remove and add pratice by splice method......that was way easy that other and easy to remember hell yeah
@thethreezdubbed Жыл бұрын
Tip : splice is a allrounder it can do push , pop , shift , unshift , slice; Thank you Miss Shradha Khapra;
@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. ❤
@TechBalu7 ай бұрын
// Practice set 1 let marks=[85,34,68,26,96] let total=0; let leng=marks.length for(let i=0;i
@alamtv3532 Жыл бұрын
Your teaching is very good I am from end developer from Pakistan
@vggaming0077 Жыл бұрын
Jay Shree Ram bro🙏
@AnkitDevVlogr Жыл бұрын
Thank you so mach mam for help poor students 🎉❤ i am proud studend of apna college
@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-p4d11 ай бұрын
Apna college is doing great work...
@armaansaif6382Ай бұрын
Very Helpful.... Thank You Shradha Mam....❤️
@fmsschool95508 күн бұрын
excellent teaching method for concept clearing
@Dragon55397 Жыл бұрын
Your experiences and insights can motivate viewers to pursue their own passions, overcome challenges, and strive for personal growth.❤
@brainfood-k74 ай бұрын
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 Жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
This is one of the best course on KZbin
@priyanshpanjabi11695 ай бұрын
thank you shradha di for make this videos😊😊
@umairumairakbar15 күн бұрын
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);
@peaceofmind201810 ай бұрын
Great mam. You have bundle of knowledge
@MuhammadAbid-lw8sy11 ай бұрын
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-e8q7l12 күн бұрын
sum = 0; let marks = [85,97,44,37,76,60] for (let i=0; i
@rohitgajmer8056 ай бұрын
let marks=[82,91,65,84,78,68] let sum =0; for(let i=0; i
@ealinakundu7 ай бұрын
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 Жыл бұрын
Superb platform for learning JavaScript course
@sambangalore8291 Жыл бұрын
Bohot bohot shukriya apka thanks for your all valuable time and support.
@ASMentor-gq5xz Жыл бұрын
Thank you for showering us with a lot of help
@SufyanAli-i1x10 ай бұрын
your very good instructor for programing 😘❤.
@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-kp3lh8 ай бұрын
Didi app bohot achea trekea sea samjatea ho Well done 👍❤
@ahnafahmedjarif Жыл бұрын
truly outstanding explaination . I want a python course after this . Please 🙏🙏🙏🙏
@harshasshet67555 ай бұрын
It is already there
@musharafkhan7935 Жыл бұрын
Your teaching Method is sooooo...... Good Icant explain ❤❤❤❤❤❤❤❤❤❤❤ I can say that your Method of teaching is so beautifull as like you ❤
@Satheesh-ns5qi5 ай бұрын
wow...shakthiman in avegers multiverse
@omtank-fy1te6 ай бұрын
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 Жыл бұрын
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 Жыл бұрын
Love you Didi ❤❤,m to Norma graduation kia hu,ab javascript pe kam suru kar diya thoda thoda
@IdealTech9716 ай бұрын
Thank you mam Ap ka smjhana ka andaz both acha ha
@vijaykumar-nl6nh10 ай бұрын
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-r5q11 ай бұрын
absolutely you are best may allah grant with all blessings (ameen)🥰🥰
@bachumehta7833 Жыл бұрын
Best series of javascript
@Allinone-wg6rw8 ай бұрын
superb teacher amazing deeply explaination miss big respect love from karachi pakistan
@shivakrishnareddy13068 ай бұрын
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-h1f5 ай бұрын
Support and Love from Nepal ❤
@gkadda57311 ай бұрын
lagta hai mam avengers ki bahut badi fan h 😀😀😁
@Islam-x1x5b8 ай бұрын
Lagta tou ha
@dbzsenpai Жыл бұрын
You Are the best Coding Teacher Ever 🥲
@shivakrishnareddy13068 ай бұрын
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 Жыл бұрын
Mam thank you for give our-self your valuable or payable time
@Emerging_World53613 ай бұрын
# 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}`) }
@basicmathswithparamitamaam174911 ай бұрын
let prices = [250, 645, 300, 900, 50]; let final= []; for (let i=0; i