Hi Aksahy, I am so grateful to you... You make my javascript concepts so clear that , I got offer from 5 companies and going to join a good company with 110% hike. I really believe your content is worth payable. Thank you so much 🙌🙌🙌🙌 Keep educating and spreading love and knowledge. 🥳🥳🥳
@@akshaymarch7 bro where are you . Please do continue this series. I think there is no one explains the things like you. Please don't stop making videos.
@@akshaymarch7 hello akshay, I don't know whether you are active or not but please consider our request and upload few more videos on topics like async await, promises, spread and rest operators I believe only you can cover these topics with greater depth of understanding hopefully you're seeing this comment and wish I'd see your smile in upcoming videos this is 22k already thanks for spreading that amount of knowledge on youtube you're one of the reason I tell my juniors that you can learn anything from yt javascript se pyar to krva diya lekin is pyar ko manjil tk to pahucha do.
Things learned: 1. map method is used when we want transformation of whole array. 2. filter is used when we want to filter the arrar to obtain required value. 3. reduce is used when we want to reduce the array to single value eg (max, min, avg, sum, difference etc). 4. reduce passes two arguments one function(which includes accumulator and initial value as argument itself) and another initial value of accumulator. 5. Homework: const output = user.reduce(function(acc, curr){ if (curr.age < 30){ acc.push(curr.firstName); } return acc; }, [ ]) console.log(output);
@@lakshyapant5225 Kyuki accumulator(acc) ki pehli condition me hi aapne return kar diya. Vo function se exit ho jaayega, aage ka process ruk gaya pura.
Here is my solution: const output = users.reduce(function(acc, curr){ if(curr.age < 30){ acc.push(curr.firstName); //if age of current user is < 30, push there firstName into the acc array } return acc; }, [ ]); //initially, the acc will be an empty array console.log(output); Thanks Akshay for such a crystal clear explanation!!
// Code for the challenge given at 36:05 const outputlist = users.reduce((names, user) => { if(user.age < 30){ names.push(user.firstname); //can also use names.unlist(user.firstname); } return names; }, []);
I'm a Nigerian who has been struggling to understand these concepts with some of my friends. I love how you add jokes and giffs while teaching. You just earned 12 subscribers(I and my 11 friends)
All Episodes of Namaste JavaScript Web Series: th-cam.com/play/PLlasXeu85E9cQ32gLCvAvr9vNaUccPVNP.html ✅After watching this video, do let me know in the comment, How was the video? I read all the comments, would love your feedback! ❤️
@Akshay Saini Sir, Can you please make a video on a small project using all these concepts, with HTML CSS JavaScript, for beginners? So that we know where and how these concepts of your previous videos are used. I know that we can google the project, but your explanation is the best and we can understand all the concepts clearly. Only if it is possible and if it doesn't bother you to show a small project. Thankyou Sir. Please consider😊
Man your tutorials are so addictive, I don't want to study from other resources. You're like a good music band and we are fans that are waiting for new "songs". Please continue this awesome series 🙏🙏🙏
My answer to homework: const userList = users.reduce((acc, curr) => { if(curr.age < 30) { acc.push(curr.firstName); } return acc; },[]); console.log(userList); This was asked in an interview. Thanks for explaining and letting us know :)
Hi Akshay, I just finished your "Namaste JavaScript - series 1" course. I can't say how much confident I am in JavaScript now just because of you. Thank you so much for making this amazing video series on JavaScript. Homework solution: const users = [ { firstName: "Akshay", lastName: "Saini", age: 26 }, { firstName: "Donald", lastName: "Trump", age: 75}, { firstName: "Elon", lastName: "Must", age: 50}, { firstName: "Deepika", lastName: "Padukone", age: 28} ]; const output = users.reduce(function(acc, curr) { if (curr.age < 30) { acc.push(curr.firstName); } return acc; } , [ ] ); console.log(output); P.S - from today onwards, I am naming you "The Amazing - Akshay Saini" Regards, Your Well-wisher and a learner
11:49 Found the answer for why reduce is named so. According to an article on digital ocean - "A reducer will only return one value and one value only hence the name reduce." In simple terms, it reduces the array to a single value.
const names = users .reduce(function (acc, curr) { if (curr.age < 30) { acc.push(curr); } return acc; }, []) .map((x) => x.firstname); console.log(names); This is the homework.. Thank you sooo much. You explained the concepts very well.
dude, you are a legend. I never saw anyone who explain a program the way you do. not just telling if you do this, this will happen, instead showing how it is happening. If you could upload the same way of teaching for other programs as well, it would be really amazing. I wouldn't mind to pay for such an golden content. also your smile really makes this course very enjoyable to watch. thankyou again
Hi, @@debo01 No, this will not work because you initialized the reduce function with object literals {}. Since we are pushing (.push) the results we should use an array for initialization, just like @Mohammad Noushad Siddiqui did. Thanks.
const output1 = users.reduce((acc, curr) => { if (curr.age < 30) { acc.push(curr.firstName); } return acc; }, []); console.log(output1); Thanks a lot!!!!!! Really i was always frustrated with reduce cause i could not understand completely and found it hard. you just made it so easy n i solved all the extra problems before watching your solution. I just love the way you teach and make it so simple that anyone could understand
Thanks for explaining the javascript in so detail H.W const output = users.reduce((acc,curr) =>{if(curr.age < 30){acc.push(curr.firstname);} return acc},[]) console.log(output);
11:50 - Name reduce was assigned with a purpose to maintain similarity between languages. We have similar reduce (and map, filter as well) in other languages also - Java, Python, Scala, Ruby etc. So having a consistent naming convention will be very easy for developers to get up and running when they switch from one language to another!
@@jahangagan5396 I like your answer jahan that is what I came up with. I don't really understand Omkar answer of acc = [...acc, curr.firstName]; why are we using spread syntax here
@jahan gagan Write a PURE function using map,filter and reduce methods to calculate the income tax given an amount. 0 upto 2.5L, 5% for 2.5L-5L, 20% for 5L-10L, 30% for more than 10L. Can you help me with this please
No Words for this content just Asowme , Today I got clarity about map(), filter(), reduce() # Take Inputs = arr const res = arr.reduce((acc, curr) => { if (curr.age > 20) { acc.push(curr.name) } return acc }, []) console.log(res)
Please continue this series sir ,as we want to learn more about things like promises , async-await , fetch api , OOPS in javascript and more on functional programming.
I was learning reduce from the video by coding myself and when I tried without assigning an initial value to the acc argument, the first element in the array was assigned to it automatically and the second element was assigned to the curr argument, just sharing an interesting fact, you are a great teacher ❤️❤️
I freaking love your videos man.. u have no idea how much I'm hanging on to life because of u... you're not like the teacher who presents boring slides & reading from scripts, u speak from the heart. I just love yr energy & enthusiasm.. u give me light at the end of the tunnel..
This works... const reducedArray = users.reduce(function (acc, curr) { if (curr.age < 30) { acc.push(curr.first) } return acc }, []) Thanks Akshay for this series! You are a gem
Hey Akshay 😍 I landed a fully front end position at Adobe. You are a gem Your tutorials were like a one place stop. I didn’t refer to any other documentation or tutorial. Made my life easy. Thank you so much ❤️❤️ This community is awesome because of people like you 🔥
first of all a very congratulations Akshaya ma'am , it will be a very kind of you if you may tell from where did u referred rest of the topics of this series , from where Akshay saini sir left this series ????
@@Abhishek_Poddar Could you tell me what you mean by rest of the topics? Interviews mostly cover the fundamentals. There were no targetted question based on syntax so in my view I think if you complete this playlist you can answer most interview questions on JS.
Akshay Sir, it's commendable that you are sharing the knowledge with everyone. You are an inspiration for all of us. Btw I did the homework. let data = users.reduce((acc,personDetails)=>{ if(personDetails.age < 30) acc.push(personDetails.name); return acc; },[]);
Hats off to you Akshay for the Content. const output = users.reduce((acc, curr) => { if (curr.age < 30) { acc.push(curr.firstName) } return acc }, []);
I regret for not finding your channel earlier :( still neva too late :) . So much clarity and that eager to make viewers understand the topic. Hats off. Thanks a lot.
I am in more love with Javascript after watching "Namaste Javascript". I have shared it with all of friends and colleagues to strengthen their knowledge about JS. Words are not enough to explain the value of this series. Thanks for making this series for everyone with pure love and dedication ❤
Greate and in-depth teaching i ever seen.even you start it with very basic knowledge, you will get know what JavaScript is actually. Due to other programming languages knowledge many time confusion get created, but this course played very well to teach without any confusion.. Thanks to you Akshay, this helped a lot.
One more of the many awesome videos of this series. More power to you Akshay. GG. Homework: const output = users.reduce((acc, curr)=>{ if (curr.age < 30){ acc.push(curr.firstName) } return acc },[ ])
let results = names.reduce((acc,curr)=> { if(curr.age < 30) { acc.push(curr.firstname); } return acc; },[]) console.log(results); enjoyed watching your video. Thank you for creating such a nice video for us.
I know I'm already late for this but I have finally completed this JS tutorial today. It's just amazing and I don't have any words to describe and YES along with falling in love with JS, I fell in love with Akshay too 😊
I usually don't comment but now I have to: Thank you so much bhaiya ❤ And here is implementation of above logic using reduce method_ const output=users.reduce((acc,curr)=>{ if(curr.age
We can do something like this to get the desired output! const filterByAge = users.reduce((acc,item)=>{ if(item.age>30){ acc.push(item.firstName); } return acc },[])
Hello Akshay Saini sir, I'm Jaymin Darji from Gandhinagar, Gujarat. First of all thank you very much for this Namaste Javascript series. I have learned lot's of new things from this series. I'm BCA graduage and currently doing MCA. I already know the javascript concepts but you have made my javascript knowledge top lavel. I can't stop myself to watch next video. One interesting thing I want to tell you, I just started this series at 20/7/2024 and today 24/7/2024 (Done with the whole searies) . Once again, Thank you very much 🙏🙏
This should work. You don't need 2 return statements. let output = users.reduce((acc,curr) => { if(curr.age < 30) { acc.push(curr.firstName); } return acc; },[]);
Thank you for such a nice content. Really clarified all my doubts with simple and advance examples. Home work completed sir. :) const output = users.reduce((acc, curr) => { if (curr.age < 30) { acc.push(curr.firstName); } return acc; }, []); console.log(output); @Akshay Saini, Can we expect videos on `Iterators` and `generators` in JS in near future ?
I clearly understood these concepts. I just fall in love with reduce,map,filter that these are reducing so many codes. Hats off to you Akshay Saini... Lots of love 💖
Akshay Bhaiya , Please start a small course or a bootcamp for JS from basic concepts to advanced , this content is gold , we need more of your explanation in various concepts and functional concepts. #JSbyAkshaySaini
when will you release a video on the 'This' keyword in JS. We really need to understand how the binding of "this" is different in the arrow function !! BTW, great work till now!
Thankyou for the lesson, here is my homework 😸 const output = users.reduce(function(acc, curr){ if(curr.age < 30){ acc = [...acc, curr.firstname] } return acc },[])
I am addicted to the way you teach and changed the way, I used to learn. Now, I always hunt the blogs which go in-depth. Here is my H/W // find people whose age is less than 30 using reduce const users = [ {firstName: "Inderpreet", lastname:"singh", age:31}, {firstName: "Rahul", lastname:"Kumar", age:28}, {firstName: "Akshay", lastname:"Saini", age:20} ]; const output = users.reduce(function(acc, curr) { if(curr.age
Thanks for this namaste javascript season 1 , i learnt many of the things , and I can tell one thing about your video is quality over quantity is what your video is .❤
Man you really ARE good. I was able to complete a few coding challenges using reduce without looking at the solution... think I've *finally* got it :D. That's a sub from me! Thanks!
Hi Akshay, first of all Thankyou so much for clearing my doubts in array reduce. It was so simple and easy to understand. You definitely made me fall in love with Javascript. The Namaste Dev courses are so worth paying and I learnt a lot. Please do more videos and courses by educating us.
Took a deep breath and did this, const output = users.reduce((acc, curr) => { if (curr.age > 30) { acc.push(curr.firstName); } return acc; }, []); console.log(output);
in example 8 using initial value as arr[0] is better because it works for negative values as well and ~~ akshay saini is one of the best guru/teacher with amazing teaching skill ~~ :::::::::::: const arr = [-1,-5,-7,-2,-6,-9,-11] const output = arr.reduce((acc, curr)=>{ if(curr > acc){ acc = curr; } return acc; }, arr[0] ) console.log(output);
Hi Aksahy, I am so grateful to you... You make my javascript concepts so clear that , I got offer from 5 companies and going to join a good company with 110% hike.
Hi Akshay Sir Thank you for sharing your knowledge I was so confused about the concepts and pull my hairs like how the things done but with your way of teaching and your support make me fall in love with the javascript and now I understand the concepts way better than before . Thank you Thank you Thank you Thank you Thank you Thank you a big Thank you for sharing your knowledge with us.
WOW! if only had i watched these videos of your for JS and all these functions before diving into React and full stack MERN projects, i would have understood them so much better. Now i understand why am i not able go beyond 2-3 rounds of companies in last 2 weeks. Anyway der aaye durust aaye
Hi Aksahy, I am so grateful to you... You make my javascript concepts so clear that , I got offer from 5 companies and going to join a good company with 110% hike.
I really believe your content is worth payable. Thank you so much 🙌🙌🙌🙌
Keep educating and spreading love and knowledge. 🥳🥳🥳
Congratulations, Ram 🎉
Wish you a great career ahead! ♥️
@@akshaymarch7 Thank you souch 😀
Just so you know, you are like that one friend who teaches entire subject few hours before exam 😎
@@akshaymarch7 bro where are you . Please do continue this series. I think there is no one explains the things like you. Please don't stop making videos.
@@akshaymarch7 hello akshay, I don't know whether you are active or not but please consider our request and upload few more videos on topics like async await, promises, spread and rest operators I believe only you can cover these topics with greater depth of understanding hopefully you're seeing this comment and wish I'd see your smile in upcoming videos this is 22k already thanks for spreading that amount of knowledge on youtube you're one of the reason I tell my juniors that you can learn anything from yt javascript se pyar to krva diya lekin is pyar ko manjil tk to pahucha do.
Things learned:
1. map method is used when we want transformation of whole array.
2. filter is used when we want to filter the arrar to obtain required value.
3. reduce is used when we want to reduce the array to single value eg (max, min, avg, sum, difference etc).
4. reduce passes two arguments one function(which includes accumulator and initial value as argument itself) and another initial value of accumulator.
5. Homework:
const output = user.reduce(function(acc, curr){
if (curr.age < 30){
acc.push(curr.firstName);
}
return acc;
}, [ ])
console.log(output);
bro agr mai return acc ko if k andrr likh rha hu toh error aa rhi hai so what's the reason behind it....please explain?
@@lakshyapant5225 Kyuki accumulator(acc) ki pehli condition me hi aapne return kar diya. Vo function se exit ho jaayega, aage ka process ruk gaya pura.
Amazing
I tried this homework directly in console but throwing error related to acc.push
@@ganeshbyale5024 Can you tell the error. Maybe i will be able to help you. Maybe copy paste your code and error
Here is my solution:
const output = users.reduce(function(acc, curr){
if(curr.age < 30){
acc.push(curr.firstName); //if age of current user is < 30, push there firstName into the acc array
}
return acc;
}, [ ]); //initially, the acc will be an empty array
console.log(output);
Thanks Akshay for such a crystal clear explanation!!
Today I learnt 4 things from this video
1. Map function
2. Filter function
3. Reduce function
4. Deepika Padukon is still 26
Awesome video Akshay 👌👌👌
Hahaha 🤣
No she is not 26
i guess her age got "mapped" or "reduced" to 26. pun intended 😆😋
@@KPoireiNgambaSingha but you 'filtered' some years after 26 😂😂
kudos to Deepika😂😂
Brother - you are so natural in explaining these concepts! Big thanks 🙏
let belowFortyReduce = users.reduce((res, user) => {
if (user.age
// Code for the challenge given at 36:05
const outputlist = users.reduce((names, user) => {
if(user.age < 30){
names.push(user.firstname); //can also use names.unlist(user.firstname);
}
return names;
}, []);
can you please explain why you use [] instead of empty object {}
@@ShrikantKunte Thanks
because in the final output we need an array of first names of users whose age is less than 30
@@vidushikagupta2900
I also did the same broh
I'm a Nigerian who has been struggling to understand these concepts with some of my friends. I love how you add jokes and giffs while teaching. You just earned 12 subscribers(I and my 11 friends)
That’s 12 my friend 😂
@@hailea726 😂😂
@@hailea726 and you will all be forever in a friendship closure :)
Another 11 subscribers brother ( I and my 12 friends)
Another 12 subs( me and my other accounts)
All Episodes of Namaste JavaScript Web Series: th-cam.com/play/PLlasXeu85E9cQ32gLCvAvr9vNaUccPVNP.html
✅After watching this video, do let me know in the comment, How was the video? I read all the comments, would love your feedback! ❤️
Okay but your videos always awesome thnx
Please suggest me js book which helps me to learn js from beginner to pro and thanks for this beautiful video❤️
Video was amazing
Thanks bro
Please make video on arrow function and regular function
@Akshay Saini Sir, Can you please make a video on a small project using all these concepts, with HTML CSS JavaScript, for beginners? So that we know where and how these concepts of your previous videos are used. I know that we can google the project, but your explanation is the best and we can understand all the concepts clearly. Only if it is possible and if it doesn't bother you to show a small project. Thankyou Sir. Please consider😊
Super simple explanation
Man your tutorials are so addictive, I don't want to study from other resources. You're like a good music band and we are fans that are waiting for new "songs". Please continue this awesome series 🙏🙏🙏
same here
My answer to homework:
const userList = users.reduce((acc, curr) => {
if(curr.age < 30) {
acc.push(curr.firstName);
}
return acc;
},[]);
console.log(userList);
This was asked in an interview. Thanks for explaining and letting us know :)
No words can express, how grateful I am for your explanation. you killed it! THANK YOU!
Hi Akshay,
I just finished your "Namaste JavaScript - series 1" course. I can't say how much confident I am in JavaScript now just because of you.
Thank you so much for making this amazing video series on JavaScript.
Homework solution:
const users = [
{ firstName: "Akshay", lastName: "Saini", age: 26 },
{ firstName: "Donald", lastName: "Trump", age: 75},
{ firstName: "Elon", lastName: "Must", age: 50},
{ firstName: "Deepika", lastName: "Padukone", age: 28}
];
const output = users.reduce(function(acc, curr) {
if (curr.age < 30) {
acc.push(curr.firstName);
}
return acc;
} , [ ] );
console.log(output);
P.S - from today onwards, I am naming you "The Amazing - Akshay Saini"
Regards,
Your Well-wisher and a learner
11:49
Found the answer for why reduce is named so. According to an article on digital ocean -
"A reducer will only return one value and one value only hence the name reduce."
In simple terms, it reduces the array to a single value.
const names = users
.reduce(function (acc, curr) {
if (curr.age < 30) {
acc.push(curr);
}
return acc;
}, [])
.map((x) => x.firstname);
console.log(names);
This is the homework..
Thank you sooo much. You explained the concepts very well.
I think there is no need to add map just change the code
acc.push(curr.firstName);
it justs only add firstname to acc
I have watched several youTube videos to understand theh reduce method and I can say finally my search is over!!!! Thanks Akshay!!
dude, you are a legend. I never saw anyone who explain a program the way you do. not just telling if you do this, this will happen, instead showing how it is happening. If you could upload the same way of teaching for other programs as well, it would be really amazing. I wouldn't mind to pay for such an golden content. also your smile really makes this course very enjoyable to watch. thankyou again
I complete the homework
const user = [
{ firstname: "Mohammad", lastname: "Noushad", age: 22 },
{ firstname: "Aniket", lastname: "Bhalla", age: 45 },
{ firstname: "Bidhi", lastname: "Chand", age: 21 },
{ firstname: "Saif", lastname: "Siddiqi", age: 67 },
];
const output = user.reduce((acc, current) => {
if(current.age < 30){
acc.push(current.firstname);
}
return acc;
}, []);
console.log(output);
const output = user.reduce((acc, curr) => {
if(curr.age < 30){
acc.push(curr.firstname);
}
return acc;
}, {}
);
Thanks akshay bro love you...
Hi, @@debo01 No, this will not work because you initialized the reduce function with object literals {}. Since we are pushing (.push) the results we should use an array for initialization, just like @Mohammad Noushad Siddiqui did.
Thanks.
@@debo01 no its wrong..you can't use push method to insert a data in object ,push is array 's method
How to put these first names into an object?
const output1 = users.reduce((acc, curr) => {
if (curr.age < 30) {
acc.push(curr.firstName);
}
return acc;
}, []);
console.log(output1);
Thanks a lot!!!!!! Really i was always frustrated with reduce cause i could not understand completely and found it hard. you just made it so easy n i solved all the extra problems before watching your solution. I just love the way you teach and make it so simple that anyone could understand
Thanks for explaining the javascript in so detail
H.W
const output = users.reduce((acc,curr) =>{if(curr.age < 30){acc.push(curr.firstname);} return acc},[])
console.log(output);
11:50 - Name reduce was assigned with a purpose to maintain similarity between languages. We have similar reduce (and map, filter as well) in other languages also - Java, Python, Scala, Ruby etc. So having a consistent naming convention will be very easy for developers to get up and running when they switch from one language to another!
also it reducing from multiple value(array) to single value
Best explanation for all this important array methods!!
Reduce example-
Const output=users.reduce((acc,curr) =>{
If(curr.age
Why not acc.push(curr.firstName)? XD
const output = users.reduce((acc, cur) => {
if (cur.age < 30) acc.push(cur.firstName)
return acc
}, [])
@@jahangagan5396 I like your answer jahan that is what I came up with. I don't really understand Omkar answer of acc = [...acc, curr.firstName]; why are we using spread syntax here
@@giannizamora7247 It is the another method of pushing elements into the array nothing else.
@jahan gagan Write a PURE function using map,filter and reduce methods to calculate the income tax given an amount. 0 upto 2.5L, 5% for 2.5L-5L, 20% for 5L-10L, 30% for more than 10L. Can you help me with this please
Solution:
const output = users.reduce(function(acc,curr){ if(curr.age < 30){ acc.push(curr.firstName);} return acc; }, []);
Really enjoyed! Thanks.
No Words for this content just Asowme , Today I got clarity about map(), filter(), reduce()
# Take Inputs = arr
const res = arr.reduce((acc, curr) => {
if (curr.age > 20) {
acc.push(curr.name)
}
return acc
}, [])
console.log(res)
Please continue this series sir ,as we want to learn more about things like promises , async-await , fetch api , OOPS in javascript and more on functional programming.
Solution of the homework:
const output = users.reduce((prevVal, currVal) => {
if (currVal.age < 30) {
prevVal.push(currVal.firstName);
}
return prevVal;
}, []);
the thing is the output is not an array it doesn't have []
Exactly, that's the same thing i thought
@@abhisekgupta4678 you need only name so it make output in the form of array
@@mohitbansal321yh😊
const max30 = people.reduce((acc, curr) => {
if (curr.age > 30) {
// acc = curr.firstName;
acc = curr.firstName + " " + curr.lastName
}
return acc;
}, {});
console.log(max30)
Esses indianos sabem demais. Tu é doido! Salvando sempre. Namastê 🙏
0:38 best intro I have ever seen in My life.. They way you said aayeee bsss bs bs 😂😂😂😂😂😂😂😂😂😂
Superb explanation
console.log(final) ;
const array = users.reduce( function(arr , user){
if(user.age < 30){
arr.push(user.firstName) ;
}
return arr ;
} , [] ) ;
console.log(array) ;
Thanks for this amazing video.
Sir, Please complete Namaste Javascript series. This is a request on behalf of all javascript developers..
You're such an excellent teacher. PLEASE DON'T STOP
I was learning reduce from the video by coding myself and when I tried without assigning an initial value to the acc argument, the first element in the array was assigned to it automatically and the second element was assigned to the curr argument, just sharing an interesting fact, you are a great teacher ❤️❤️
I freaking love your videos man.. u have no idea how much I'm hanging on to life because of u... you're not like the teacher who presents boring slides & reading from scripts, u speak from the heart.
I just love yr energy & enthusiasm.. u give me light at the end of the tunnel..
This works...
const reducedArray = users.reduce(function (acc, curr) {
if (curr.age < 30) {
acc.push(curr.first)
}
return acc
}, [])
Thanks Akshay for this series! You are a gem
curr.firstName :)
Hey Akshay 😍 I landed a fully front end position at Adobe. You are a gem Your tutorials were like a one place stop. I didn’t refer to any other documentation or tutorial. Made my life easy. Thank you so much ❤️❤️ This community is awesome because of people like you 🔥
first of all a very congratulations Akshaya ma'am , it will be a very kind of you if you may tell from where did u referred rest of the topics of this series , from where Akshay saini sir left this series ????
@@Abhishek_Poddar Could you tell me what you mean by rest of the topics? Interviews mostly cover the fundamentals. There were no targetted question based on syntax so in my view I think if you complete this playlist you can answer most interview questions on JS.
@venkyakshaya please let me know I want to see how you get opportunity in adobe and how can I get..?
Akshay Sir, it's commendable that you are sharing the knowledge with everyone. You are an inspiration for all of us. Btw I did the homework.
let data = users.reduce((acc,personDetails)=>{
if(personDetails.age < 30) acc.push(personDetails.name);
return acc;
},[]);
Hats off to you Akshay for the Content.
const output = users.reduce((acc, curr) => {
if (curr.age < 30) {
acc.push(curr.firstName)
}
return acc
}, []);
Loved this JS series... The way you cover each topic is awesome... Easy to understand and remain forever. Thank you ❤️
27:13 brought smile on my face even more interactive than my live lectures
I regret for not finding your channel earlier :( still neva too late :) . So much clarity and that eager to make viewers understand the topic. Hats off. Thanks a lot.
Please cover the following topics:
1. async/await
2. Observables
3. Promise
Exactly.. Please cover those
Yes please!!!!
Yes Please ! Async/await, Observables and Promise..
yes please cover these topics also
go and check the Js mastery by harshith best course
I am in more love with Javascript after watching "Namaste Javascript". I have shared it with all of friends and colleagues to strengthen their knowledge about JS.
Words are not enough to explain the value of this series. Thanks for making this series for everyone with pure love and dedication ❤
Greate and in-depth teaching i ever seen.even you start it with very basic knowledge, you will get know what JavaScript is actually.
Due to other programming languages knowledge many time confusion get created, but this course played very well to teach without any confusion..
Thanks to you Akshay, this helped a lot.
const names = user.reduce( (acc, curr)=> {
if(curr.age < 30) {
acc.push(curr.firstName) ;
}
return acc ;
}, []) ;
Thanks a lot, sir.. lovely explanation ❤❤
You are a true godsend! You’ve got all of the best qualities of a good teacher. Without you, I wouldn’t have made it through.
I believe in Namaste Javascript supremacy! Akshay Saini for the president xD
🤐
I've watched many tutorials on this topic, but this one is truly the best!
const output = data.reduce((acc, curr) => {
if (curr.age > 30) {
acc.push(curr.name)
}
return acc;
}, [])
console.log(output)
Thank You Saree ♥ This vedio is amazing ...
Ans of 36:05 ❤💙
const users = [
{ firstname: "akshay", lastname: "saini", age: 26 },
{ firstname: "donald", lastname: "trump", age: 75 },
{ firstname: "elon", lastname: "musk", age: 50 },
{ firstname: "deepika", lastname: "padukone", age: 26 },
];
const ans=users.reduce(function(acc,curr) {
if(curr.age
You made this sooo simple to understand!! The reason why this playlist is soooooooo popular! Keep posting great contents.
Can we please get a graphql and react series with this much depth your quality of course is far far good than those paid courses
const output2=users.reduce(function(acc,curr){
if(curr.age
Striving for a comprehensive understanding of all concepts is commendable.
One more of the many awesome videos of this series. More power to you Akshay. GG.
Homework:
const output = users.reduce((acc, curr)=>{
if (curr.age < 30){
acc.push(curr.firstName)
}
return acc
},[ ])
I don't know but, after seeing notification from namaste javascript I got goosebumps 🔥 🔥, is that the same with everyone !
@@roshnis8552 yup
Exactlly bro ------------------- he is auper man :)
Yes yes yes....
Yes bro and you should have that goosebumps.
I'm so happy that I started this series.. I feel so confident now Thank you aksay❤️💯🙌
It's the best series to learn js I have ever seen 🤩
Please upload atleast one video per week in this series 🤝
It will be very helpful 🙏
For the question @35:36 , solution :
const usersWithAgeMoreThanThirtyWithFirstName = users.reduce(function(acc,curr){
if(curr.age
let results = names.reduce((acc,curr)=>
{
if(curr.age < 30)
{
acc.push(curr.firstname);
}
return acc;
},[])
console.log(results);
enjoyed watching your video. Thank you for creating such a nice video for us.
I know I'm already late for this but I have finally completed this JS tutorial today. It's just amazing and I don't have any words to describe and YES along with falling in love with JS, I fell in love with Akshay too 😊
same😇🤩☺
let arr = [{fname: "first",age: 15},
{fname: "second",age:31}];
let output = arr.reduce((acc,curr)=>{
if(curr.age > 30){
acc.push(curr.fname)
}
return acc
},[]);
console.log(output);
Hi Akshay after submitted my answered then i am coming to others how they are answered
Liked before watching whole video coz I know it's going to be great.
Was waiting for your new video, welcome back ♥️
I usually don't comment but now I have to:
Thank you so much bhaiya ❤
And here is implementation of above logic using reduce method_
const output=users.reduce((acc,curr)=>{
if(curr.age
const arr = [
{firstName:"sumar",lastName:"ahmad",age:19},
{firstName:"usman",lastName:"zahir",age:20},
{firstName:"umar",lastName :"zain",age:52},
{firstName:"fahad",lastName:"mehmod",age:80},
{firstName:"subhan",lastName :"ali",age:42},
];
const output =arr.reduce(function(acc,cur){
if(cur.age
Hum first hum first 😂
Namaste JS is finally here 🔥🔥🔥
We can do something like this to get the desired output!
const filterByAge = users.reduce((acc,item)=>{
if(item.age>30){
acc.push(item.firstName);
}
return acc
},[])
but it would be good to use filter here
@@pranavparashar7137 surely, but that's not the point. The point is whether or not can we achieve the same functionality with reduce.
@@vinothkumarv9722 I love how you are trying to say you like Akshay more even when Deepika is having a crush on you✌
bro you can replace the if statement with this-
item.age>30 ? acc.push(item.firstName) : " "; return acc
ONE LINE OF CODE RIGHT !!!
@@divyansh50 sure we. Can do lie this condition rendering as well 😍
Din ki suruat js ke sath 🔥
wow you are the only man that express map,filter and reduce in simple way God blase you
Hello Akshay Saini sir, I'm Jaymin Darji from Gandhinagar, Gujarat. First of all thank you very much for this Namaste Javascript series. I have learned lot's of new things from this series. I'm BCA graduage and currently doing MCA. I already know the javascript concepts but you have made my javascript knowledge top lavel. I can't stop myself to watch next video.
One interesting thing I want to tell you, I just started this series at 20/7/2024 and today 24/7/2024 (Done with the whole searies) .
Once again, Thank you very much 🙏🙏
ultimate no one can do better than this.
@Akshay Saini sir
assignment done
const output = user.reduce((acc, curr) => {
if(curr.age < 30) {
acc.push(curr.name);
}
return acc;
}, []);
console.log(output)
Nice 💯. Also you can use spread operator instead of push 😊
@@omkaranku1981 you can try acc=[...acc,curr.name] . Spread arr elements first and then the next argument should be the element you want to add.
@@mohit96nain but spread operator will create a deep copy everytime so its better to use .push()
@@omkaranku1981
const output = users.reduce((acc, user) => {
if (user.age < 30) return [...acc, user.firstName];
}, []);
Solution for homework: let output = users.reduce((acc,curr) => {
if(curr.age < 30) {
acc.push(curr.firstName);
return acc;
} else {
return acc;
}
},[]);
console.log(output);
This should work. You don't need 2 return statements.
let output = users.reduce((acc,curr) => {
if(curr.age < 30) {
acc.push(curr.firstName);
}
return acc;
},[]);
@@RohitKumar-kk7fc Correct, i rectified the same.
How to get object instead of array?
@@thalhas9760 instead of pushing curr.firstName push curr
@@RohitKumar-kk7fc that's correct 👍
finally completed yhe whole playlist. Thanks Akshay for the great content.
Homework :
const output = users.reduce((acc, curr) => {
if(curr.age < 30){
acc.push(curr.firstName);
}
return acc;
}, []);
Akshay, are you kidding me already crossed 100k. Congrats 👏. You are passionate teacher. ❤
Thank you so much brother, it was not possible without your love and support! ❤️
@@akshaymarch7 Home work
const users = [
{ firstName:"akshay", lastName:"bhinge", age:26 },
{ firstName:"donald", lastName:"trump", age:75 },
{ firstName:"elon", lastName:"musk", age:50 },
{ firstName:"deeika", lastName:"padukone", age:29 },
];
const output = users.reduce(function (acc, curr){
if(curr.age < 30){
acc.push(curr.firstName);
}
return acc;
}, [ ] );
console.log(output);
Thank you for such a nice content. Really clarified all my doubts with simple and advance examples.
Home work completed sir. :)
const output = users.reduce((acc, curr) => {
if (curr.age < 30) {
acc.push(curr.firstName);
}
return acc;
}, []);
console.log(output);
@Akshay Saini, Can we expect videos on `Iterators` and `generators` in JS in near future ?
const output = users.reduce((acc, curr) => {
if (curr.age && curr.age < 30) {
acc.push(curr.firstName);
}
return acc;
}, []);
console.log(output);
Nice
const names = arr.reduce(function(acc, curr) {
if(curr.age < 30) acc.push(curr.firstName);
return acc
},[])
console.log(names)
@@saurabhgandhi615 what is thelogic of curr.age&&
I clearly understood these concepts. I just fall in love with reduce,map,filter that these are reducing so many codes.
Hats off to you Akshay Saini... Lots of love 💖
This is the first video i have seen in your channels. I just printed this topics in my mind . Thank you boss .
I would love to see object oriented classes in JavaScript and es6 modules as well
I second that, waiting for the same.
Here's my solution using reduce
const output = users.reduce((result, {age, firstName}) => {
if(age < 30){
result.push(firstName);
}
return result;
}, []);
Your statement "Filter function is actually used to filter" coincided with the Ad that starts with "So you wanna be a Software Engineer at Google".
lol
const users = [
{firstName: 'akshay', lastName: 'saini', age: 26},
{firstName: 'donald', lastName: 'trump', age: 75},
{firstName: 'elon', lastName: 'musk', age: 50},
{firstName: 'deepika', lastName: 'padukone', age: 26}
]
const ans = users.reduce((acc, curr)=>{
if(curr.age < 30) acc.push(curr.firstName)
return acc
}, [])
console.log(ans)
// I like the way you simplify the topics and present them with
// the most beautiful explanation, THANKS BRO....
laterally i pause video and came in comment secession to write just wow maja aa gaya itana line by line samajhane ke liye
Finally Season 2 Thank you so much bhaiya. 🙏 Bhot jyada help karte hai aap ke videos ❤
Akshay Bhaiya , Please start a small course or a bootcamp for JS from basic concepts to advanced , this content is gold , we need more of your explanation in various concepts and functional concepts. #JSbyAkshaySaini
Request: Next videos on JAVASCRIPT OOPS concepts please 🙏
when will you release a video on the 'This' keyword in JS. We really need to understand how the binding of "this" is different in the arrow function !!
BTW, great work till now!
🙌 I am also waiting for that.
Thankyou for the lesson, here is my homework 😸
const output = users.reduce(function(acc, curr){
if(curr.age < 30){
acc = [...acc, curr.firstname]
}
return acc
},[])
I am addicted to the way you teach and changed the way, I used to learn. Now, I always hunt the blogs which go in-depth.
Here is my H/W
// find people whose age is less than 30 using reduce
const users = [
{firstName: "Inderpreet", lastname:"singh", age:31},
{firstName: "Rahul", lastname:"Kumar", age:28},
{firstName: "Akshay", lastname:"Saini", age:20}
];
const output = users.reduce(function(acc, curr)
{
if(curr.age
shame on you 🤣🤣🤣🤣🤣🤣🤣
Why?
@@chiggywiggy524He literally commented what Akshay sir said at the start of the video.
Thanks for this namaste javascript season 1 , i learnt many of the things , and I can tell one thing about your video is quality over quantity is what your video is .❤
Man you really ARE good. I was able to complete a few coding challenges using reduce without looking at the solution... think I've *finally* got it :D. That's a sub from me! Thanks!
Hi Akshay, first of all Thankyou so much for clearing my doubts in array reduce. It was so simple and easy to understand. You definitely made me fall in love with Javascript. The Namaste Dev courses are so worth paying and I learnt a lot. Please do more videos and courses by educating us.
Very easy and explanatory video. I am new to programming and watching your video has bought a lot of interest in me towards java script..:)
Took a deep breath and did this,
const output = users.reduce((acc, curr) => {
if (curr.age > 30) {
acc.push(curr.firstName);
}
return acc;
}, []);
console.log(output);
const output = users.reduce(function (acc , curr) {
if(curr.age
in example 8 using initial value as arr[0] is better because it works for negative values as well and ~~ akshay saini is one of the best guru/teacher with amazing teaching skill ~~ :::::::::::: const arr = [-1,-5,-7,-2,-6,-9,-11]
const output = arr.reduce((acc, curr)=>{
if(curr > acc){
acc = curr;
}
return acc;
}, arr[0] )
console.log(output);
Let output = user.reduce ( function (arr ,obj ){
if ( obj.age
Hi Aksahy, I am so grateful to you... You make my javascript concepts so clear that , I got offer from 5 companies and going to join a good company with 110% hike.
Wow, congratulations to you. Keep rising! 🚀
is nameste js it enough to crack FE ?
Hi Akshay Sir Thank you for sharing your knowledge I was so confused about the concepts and pull my hairs like how the things done but with your way of teaching and your support make me fall in love with the javascript and now I understand the concepts way better than before . Thank you Thank you Thank you Thank you Thank you Thank you a big Thank you for sharing your knowledge with us.
WOW! if only had i watched these videos of your for JS and all these functions before diving into React and full stack MERN projects, i would have understood them so much better. Now i understand why am i not able go beyond 2-3 rounds of companies in last 2 weeks. Anyway der aaye durust aaye