Since I started following you, I really like that you always give importance to reading documentation Thats make your teaching different than other
@HiteshCodeLab Жыл бұрын
Glad to hear that
@ridamsinghal1073 Жыл бұрын
Sir, your teaching style is next level.
@maximus-the-merciful2 күн бұрын
Thank you for the series!
@mr_doc-.-2 ай бұрын
14:34 You may click the button beside "Copy" after you have completed writing the code in TEXT to format it. This is easier than switching from text to stages and then stages to text again.
@iqramalik-vc6vf5 ай бұрын
Your teaching style is great ♥♥♥. I am trying to understand aggregation from the previous 3 days but get bored and you make it easy peezy 😁
@abusufyan4911 Жыл бұрын
i think the following is the answer for the last question: [ { $match: { "company.location.country" : "USA" } }, { $count: 'userCount' } ]
@ajaykumarng20275 ай бұрын
No the question is about 'List all companies located in the USA with their corresponding user count', the corresponding user count means particular company's count. The answer would be right if the question was 'List all companies located in the USA with total count'
@Suraj.5260Ай бұрын
gr8 video sir thank you, it was really fun
@aloksharma7871 Жыл бұрын
keep doing these type of videos they are worth more than going through whole tutorial 😅😅😅😅
@HrishabhPatel0910 ай бұрын
Great Work Sir
@fatimaiqra21694 ай бұрын
I have learned a lot, thank you very much sir!
@tuhinghosh97374 ай бұрын
Thank you again sir ❤
@anandshinde035810 ай бұрын
Thank you so much sir ❤❤❤
@-strange93638 ай бұрын
Your teaching is great❤️❤️
@hussainsharif118622 күн бұрын
Thank You
@MdShihabUddin-dh5vc Жыл бұрын
Thank you sir for this type of great videos
@AnshumanBisoyi Жыл бұрын
Not gonna watch the video now but kudos to the effort.
@DurgeshKumar-hx6xf Жыл бұрын
Thanks for the video👍
@bishtbeat9 ай бұрын
14:36 find user who have both enim I solve it this way. Is it the incorrect way? [ { $match: { $and:[{"tags":"enim"},{"tags":"id"}] } }, { $project: { name:1, tags:1, } } ]
@prabhatdeshmukh95929 ай бұрын
I did it in the same way and got the same output so I guess it is correct
@SajalBiswas-v3g10 ай бұрын
Thank you so much Sir
@ichigo239848 ай бұрын
3:45 Stephenson Griffith 💀💀
@Nitesh_Saini_ Жыл бұрын
guruji viewer of chai-aur-backend
@anwarhaque7485 Жыл бұрын
Countdown 🎉
@irfansaeedkhan7242 Жыл бұрын
great, thank you for that
@jk-sm6qr Жыл бұрын
Thank you very much
@musiclovrrap862 Жыл бұрын
Bhaiya I want to ask a question regarding interviews, many times we are asked to describe the architecture of a technology, please tell us what should be our answer ❤
@ShivamJha00 Жыл бұрын
Learn System design?
@musiclovrrap862 Жыл бұрын
@@ShivamJha00 not sure about that one
@genztechman6 ай бұрын
Thanks
@arifurrahman5993 Жыл бұрын
I have question it is wise to install mongo db in same aws or use mongodb own service. Which one is cost effective
@rishiraj2548 Жыл бұрын
👍👍
@fitnessbyatechie6677 Жыл бұрын
Sir,learncode online is not available
@r2verse2025 Жыл бұрын
what is the name of your online class website?
@Sakin_Islam Жыл бұрын
❤
@pro-ik4rw6 ай бұрын
boom💥
@sam_sharma247 ай бұрын
goldmine series
@leeladharsuthar2152 Жыл бұрын
contributing for 'comment target'
@mohitshaw69810 ай бұрын
Done
@Shivakumartambadi858 Жыл бұрын
Hi sir
@tasnimalam68819 ай бұрын
🖤🖤🤍🤍
@SabinPoudel-iw2rf6 ай бұрын
Listing all comapny located in USA and its count: [ { $match: { "company.location.country":"USA" } }, { $addFields: { "userName": "$name" } }, { $project: { "_id":0, "userName":1 } }, { $count: 'noOfUsers' } ]