Why you need hooks and project

  Рет қаралды 171,779

Chai aur Code

Chai aur Code

10 ай бұрын

Visit chaicode.com for all related materials, community help, source code etc.
Sara code yaha milta h
github.com/hiteshchoudhary/
Discord pe yaha paaye jaate h:
""/discord
Instagram pe yaha paaye jaate h:
/ hiteshchoudharyofficial

Пікірлер: 3 300
@unknown-dy8sy
@unknown-dy8sy 10 ай бұрын
React is temporary but Hitesh sir explanations are permanent 🎉
@chaiaurcode
@chaiaurcode 10 ай бұрын
😍
@naraynwetal6544
@naraynwetal6544 10 ай бұрын
Absolutely right
@rsonentertainment1227
@rsonentertainment1227 9 ай бұрын
Baap of coding channel in youtube. ("Thanks");
@asadorakzaipti
@asadorakzaipti 7 ай бұрын
Why temporary?
@akshaychavhan9551
@akshaychavhan9551 6 ай бұрын
thats right
@quickSilverXMen
@quickSilverXMen 8 ай бұрын
Hooks in React ⚛ Intro 0:00 Start 2:21 creating the project 2:30 UI updation with simple JS 8:00 Problem in UI updation with JS 10:50 Hooks in React intro 13:00 Hooks (useState) implementation 15:13 Assignment 26:11 Conclude 27:14 Thank you sir.
@sagarsen1575
@sagarsen1575 3 ай бұрын
Appne itna achhe se samjhaya ki video khatam ho ne se pehelei assignment khatam ho gya function increment(){ if(counter + 1 > 20){ alert("Limit exceed") } else { setCounter(counter+1) console.log(counter); } } function decrement(){ if(counter-1 < 0){ alert("Value cannot be negetive") } else { setCounter(counter-1) console.log(counter) } }
@vishnubdh7288
@vishnubdh7288 27 күн бұрын
same here
@decent719
@decent719 3 ай бұрын
End level explanations.No what matter what your mood is but when you see his smile your inner coder wake's up and then you forget clocking is ticking.
@purposedriven6332
@purposedriven6332 8 ай бұрын
25:11 state changes are asynchronous that's why the value in console is not being updated immediately. An important detail that got overlooked in the video, maybe because the agenda for this one is a little different. Keep the good work up, very helpful......
@kritarthapatowary7289
@kritarthapatowary7289 4 ай бұрын
This comment needs to be at top.
@g.guruprasad2315
@g.guruprasad2315 Ай бұрын
Bro Really thank you bro, I am breaking my head since last 3 days why it not updating same value.. Really thanks Man
@g.guruprasad2315
@g.guruprasad2315 Ай бұрын
Hello Bro, {setCount((count)); console.log(await count); count++; }}> count is {count} Bro I have tried using async and await but, let me give example : when I have clicked the button 1st it is logged 1 and i have tried again but it again logged 1 and i tried once more but it logged 2, on again clicking it logged 2, this means the value of the count is changing when the button is pressed twice Please do replay Bro
@g.guruprasad2315
@g.guruprasad2315 Ай бұрын
function App() { let [count, setCount] = useState(0) if(count>=20 || count Add by one { setCount((count-1)); ; console.log(count-1); }}> Subract by one ) } I think this will be the correct now
@muhammadhilal5807
@muhammadhilal5807 5 ай бұрын
The way you teach is really clam most of the youtubers rush in teaching idk why. The calm manner really boost up the confidence. Newly subscribed :)
@akki1065
@akki1065 2 ай бұрын
I have seen your chai aur backend series, and now referring this series, your teaching method is awesome sir, very helpful.
@sayandeepsadhukhan5016
@sayandeepsadhukhan5016 2 ай бұрын
let [value, setValue] = useState(0) const addValue = () => { if (value == 20){ setValue(value = 20) } else{ setValue(value+1) } } const removeValue = () => { if (value > 0){ setValue(value - 1) } else{ setValue(value = 0) } } This is the whole solution ! Sir your teaching style is just extraordinary , so humble, so many clarity ! Thank you so much ❤❤❤❤❤❤❤❤❤❤❤❤❤❤👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍
@Muhammadamir-kx2jx
@Muhammadamir-kx2jx 9 ай бұрын
Thanks Bhaiya for being a great explainer. Learning in this video is that React hooks are basically used for updating the UI (User Interface). We don’t need to reflect each and every change manually. React makes UI updation easy. That’s why we should learn about hooks in React.
@saikrishna-or5qj
@saikrishna-or5qj 10 ай бұрын
The way of explaining is awesome. Linking the real world example with the concepts, no one can explain like u sir. I am grateful that learning things from a great professional.Thankyou for the such a amazing content sir.
@sanjananegi5954
@sanjananegi5954 3 ай бұрын
pehli baar dhng se smjh aaya ye concept , thnk you so much sr
@user-jh1jl6ii1t
@user-jh1jl6ii1t 4 ай бұрын
You are greatest of all time bhaiya, I always read about people telling learn hooks,learn react. I thought react was a drag and drop magic box and boom but after hooks lecture now I understand why react Introduced and why and how can I use this tool in my project. yes react is just a tool not a magic box and I understand it now. Thanks again I am again doing my work by sharing it on linkedin
@sukhendubanerjee5082
@sukhendubanerjee5082 10 ай бұрын
Sir thank you for creating such a beautiful javascript playlist,one more request sir please create more projects on it so that we can gain confidence in js. Love from West Bengal ❤
@Hafijur0211
@Hafijur0211 10 ай бұрын
"Thanks for being an awesome React teacher! Your teaching makes complex concepts seem so much simpler. Your clear explanations and relatable examples really help us understand and apply React effectively. Grateful for your patience and dedication in guiding us through this journey. Looking forward to building more cool things with React, all thanks to your great teaching!"
@harshitnayan2925
@harshitnayan2925 19 күн бұрын
Probably the best explanation of concepts I've seen on youtube.
@sakshigupta1593
@sakshigupta1593 Ай бұрын
I have no words for your explanation sir. now hooks topic is crystal clear.
@myproject6768
@myproject6768 10 ай бұрын
// For decrease if (counter > 0 ) setCounter( counter -1); // For add if ( counter < 30) setCounter ( counter+1) Itne achche s smjaya ki assignment me sochna hi nhi padha
@TechAsad
@TechAsad 4 ай бұрын
if(Counter==0){ SetCounter(0) }
@deveshsharma534
@deveshsharma534 3 ай бұрын
hn tabhi error show kr rha h kuki dimag hi nhi lgaya
@ayushpanchal2053
@ayushpanchal2053 2 ай бұрын
itna chhota assignment?
@nirmallyakoner6005
@nirmallyakoner6005 9 ай бұрын
Assignment answer const addValue = () => { if(counter { if(counter>0 ){ counter = counter - 1 setCounter(counter) } console.log("Clicked",counter); } if I use greater than and equal to and put the increment statement outside the block then the initial value still changes and when I reach 20 on UI and still clicks on addvalue button then UI is not changing but the value is changing inside. when after clicking so much you click on removevalue then you see that your value starts from where you stop clicking and from there it will start decrasing.
@pranjalgogoi-1209
@pranjalgogoi-1209 8 ай бұрын
const addNumber = () => { if(count { if(count>=1){ setCount(count - 1) } }
@cuttiecatty1497
@cuttiecatty1497 8 ай бұрын
rather goo like this `const addValue = () => { ctr = ctr + 1 if(ctr
@EnoughGaming
@EnoughGaming 8 ай бұрын
const addValue = ()=> { if(counter !== 20) { setCounter(counter + 1); } else { counter = 20; } } const removeValue = ()=> { if(counter !== 0) { setCounter(counter - 1); } else { counter = 0; } }
@bistap2778
@bistap2778 7 ай бұрын
​ let [counter,setCounter] = useState(0); let addValue = () => { console.log("Value Added",counter); setCounter(counter++); } let removeValue = () => { console.log("Value Removed",counter); if(counter !== 0) {setCounter(counter- -);} else {setCounter(0)} }
@dishajaiswal4783
@dishajaiswal4783 5 күн бұрын
12:30 han smjh gye smjh gye, react bhot hi reactive hai... you explained hooks in such a simple way as a cup of tea... thankyou
@jaideeppoojary
@jaideeppoojary 10 ай бұрын
Even I know how to use the state hook I'm enjoying the way sir explaining it. Thank you sir✨
@killer7495
@killer7495 10 ай бұрын
Sir aapka hook wala example sun ke maza aa gaya mereko bhi har baar Hooks sun ke Hook pull yaad aata😅
@ansh_mittal
@ansh_mittal 3 ай бұрын
Thanks sir aapne react keh concepts ko itne ache seh smjaya. Yahan tak muje react mein kaafi maja aaya hai
@divyavewall
@divyavewall 2 ай бұрын
I was never able to write code in react but after watching 2-3 videos of this playlist I am confident enough to write codes and also able to understand what is actually happening behind the scenes , never thought it will be so fun, Thankyou Sir for making these series, your explanations are always best and of top notch quality .😊
@pareshkamaliya2493
@pareshkamaliya2493 10 ай бұрын
Absolutely incredible! Your ability to simplify explanations is truly amazing. I have decided to follow this entire series of react JS from you and intending to not just passively watch, but actively engage and practice every step. The accessibility of learning material in such a user-friendly manner is genuinely refreshing. A big thank you for that! Eagerly looking forward to the release of more tutorials. Keep up the fantastic work! 🚀
@luckyjaisar8202
@luckyjaisar8202 10 ай бұрын
excellent teaching wid smooth style..!! 👌
@watchout-ov3cz
@watchout-ov3cz 6 күн бұрын
you are like a gps working for giving direction to new ones in this changing tech world
@AraizNaqvi
@AraizNaqvi 3 ай бұрын
Love the way you explain in such depth yet so simply.
@hassanhameed7796
@hassanhameed7796 3 ай бұрын
the way you explained the concept of states and hooks was very beautiful...thank you Hitesh bhai..
@stocksandbeyond
@stocksandbeyond 8 ай бұрын
I have Completed My React series From some other KZbin Channel some Concepts Got cleard there But I was still Having Doubts i was creating some basic projects with that knowledge but still having some doubts So i decided to take a look at your course and it was like a miracle the knowledge given here by Hitesh sir is immense and deep u basically understand how the react works rather than just therotical knowledge . Thank You Hitesh Sir For this !!! nd lots of Love!! ❤💘💘
@guptasagar694
@guptasagar694 4 ай бұрын
Same Here..I got confidence now after seeing his series
@arpittiwari9999
@arpittiwari9999 4 ай бұрын
gyan aana aur use padana dono mai bahut anter hai thanks to Hitesh sir for give confidence me.
@JunaidKhan-ny8tu
@JunaidKhan-ny8tu 9 күн бұрын
Ap itne ache se smjhate hy dil krta hy video khtm e na ho 😃 Thank you
@nirmal03
@nirmal03 9 ай бұрын
Your smile while teaching creates positive energy among us. So, please keep smiling and continue teaching us. 😊❤
@Anil-vh1fu
@Anil-vh1fu 8 ай бұрын
After 1 month of upload & Comment is full of motivation + more than 500 [currently [1369], I am loving how students are appreciating guru ❤ I have been following from Main channel Javascript series from 2k18... But examples and explanation in native language is damnn attraction to these languages
@xdcoder_xyz
@xdcoder_xyz 2 күн бұрын
Wow, itna smoothly smjhaya, pta hi nhi chla kab video khtm hone pe aagya
@SarveshKumar-08
@SarveshKumar-08 6 ай бұрын
00:03 Learning hooks and projects helps in understanding concepts 01:55 Create a project called counter using React . 06:05 Creating a counter and updating its value on button click 08:09 Adding values to the browser console and updating the counter 12:27 React provides hooks for updating data in a controlled manner. 14:34 Hooks are essential for code updation and debugging 18:18 The variable counter can be automatically updated in the UI using React. 19:56 Understanding how to update a counter variable 23:28 Understanding the use of hooks and project 25:25 Learn about hooks in React and how they are used
@abbas__00
@abbas__00 10 ай бұрын
Sir hooks bahut hi confusion create kar Raha tha but you made it ❤..... please cover all hooks
@chaiaurcode
@chaiaurcode 10 ай бұрын
Projects me baaki apne aap cover ho jayenge
@abbas__00
@abbas__00 10 ай бұрын
@@chaiaurcode ok sir thank you 😍
@smartincomedude1946
@smartincomedude1946 Ай бұрын
Thanks alot for making us smile while learning to code , most coders are harsh and not like you
@user-ze1qh2wm5s
@user-ze1qh2wm5s 2 ай бұрын
thanks , i recently started chai aur react course.I amazed by the amount of knowledge give in a smaller time.
@priyankasaini7204
@priyankasaini7204 7 ай бұрын
27:22 " react k basics ho gye h" , this line brings a smile 😊😂😇on my face because sir m thoda dari hui thi react k naam se ..pr aap bahut chill ho ..itni aashani se sab samjha dete ho .. now I am confident ki aap padhaoge to m sikh jaugnig...Thankyou sir❤❤❤ Mane apki Chai with Javascript series b dekhi h .. and it was amazing. ❣❣❣❣
@iNeurons
@iNeurons 10 ай бұрын
गुरुदेव को प्रणाम 🙏🙏
@mahvishfatima1692
@mahvishfatima1692 23 күн бұрын
Your style of teaching is just mindblowing sir, almost indulge in react for a couple of months now but was unable to clear this concept ,but after watching your videos I can say confidently " ya I know react & its concepts", regret that I was not starting react from ur course,but grateful that finally, I have best teacher who knows how to build students with clear concepts...
@sourabhsingh4810
@sourabhsingh4810 3 ай бұрын
Itna easy kon bata sakta h only hitesh bhaiya . mujhe to yeh react ke naam se headach hota tha but that explanation is so good . Apka yaha react ka basic hogya h with smile. makes me happy 😍😍
@mriduakaxxehacker
@mriduakaxxehacker 10 ай бұрын
Thank you sir ❤
@siddhartha5302
@siddhartha5302 10 ай бұрын
Thank you so much sir
@nehakaler6677
@nehakaler6677 4 күн бұрын
Finished this 5th lecture on 13 June. Started in the morning and going for more (absolutely loving it). Will update on every lecture after this.
@mohsinzia8566
@mohsinzia8566 4 ай бұрын
Your teaching style is so clear!
@chetan_rajputt
@chetan_rajputt 10 ай бұрын
Samaj me aa rha 😊
@anilkumarnayakk2235
@anilkumarnayakk2235 9 ай бұрын
I am 35 yrs old still not settled in life just started learning react Hitesh Sir you are a big hope for me
@zishanchaudhary221
@zishanchaudhary221 7 ай бұрын
what were you doing!!
@swastikyadav9829
@swastikyadav9829 3 ай бұрын
How you explain these concepts so easily and clearly is what makes you a great teacher
@user-pn8kj1sf3z
@user-pn8kj1sf3z Ай бұрын
literally i never saw any video with such indepth explanations really hope this channel goes viral
@funnyclipsofbgmijods4804
@funnyclipsofbgmijods4804 9 ай бұрын
@Everyone please comment on here. The reach is important for us to motivate sir to the highest and squeeze out the best number 1 content of React in hindi from Hitech sir.❤❤❤❤❤❤❤❤
@chaiaurcode
@chaiaurcode 9 ай бұрын
❤️❤️❤️
@CandleLight..
@CandleLight.. 9 ай бұрын
Assignment 1 sol: -> import { useState } from "react"; function App() { let [counter, setCounter] = useState(0); function increment() { setCounter((p) => { return p < 20 ? p + 1 : p; }); } function decrement() { setCounter((p) => { return p > 0 ? p - 1 : p; }); } return ( {counter} increment decrement ); } export default App;
@ankitsaurabh8158
@ankitsaurabh8158 6 ай бұрын
const [count, setCount] = useState(0) const addValue = () => { setCount(count + 1) } const decValue = () => { setCount(Math.max(0, count - 1)) }
@patel..665
@patel..665 4 ай бұрын
Sir, there are far more comments in the Hindi videos than in the English ones. Both videos are interesting. thank you sir for your invaluable knowledge...
@shaharyarranjha3397
@shaharyarranjha3397 2 ай бұрын
Samjh a gya sir ap puray KZbin per Ak wahid teacher ho Jo acha prhata or sekhata hai love to you
@Create_With_Amit
@Create_With_Amit 2 ай бұрын
Thanks for making this level course free, today I am learning a lot with his help, so thank you Hitesh sir.
@g.guruprasad2315
@g.guruprasad2315 Ай бұрын
Dear Sir, I am Happy, because of your teaching technique. I hope this will help many people and one small help I argue you to explain that last error, which the value of count is 16 and the value of count in console is 15 and I have tried to know the reason beyond, but i did not get the proper answer. I hope Chai sir will give replay to my Comment please sir...... please do replay I really thank you, for your teaching efforts in React Have a nice day
@user-nz8sy4dq8y
@user-nz8sy4dq8y 2 ай бұрын
Guys this is the most important video on syncing on data layer and ui , understand it well , i got this information by paid 24k rs. Thank you hitesh sir
@thecalgarians4597
@thecalgarians4597 Ай бұрын
Hitesh ji, under the hood Rocket Science to hai, no doubt, leking aapne explain is tarah se kiya hai ki Rocket science lag nahi rahi. HATS OFF to your pedagogy ❤❤❤
@nitupal2778
@nitupal2778 3 ай бұрын
assignment done👍 easy tha sir aapka teaching method bht achha hai sab achhhe se samjh aatahai❤
@contra4uchallenger811
@contra4uchallenger811 4 ай бұрын
Sir I am really fill underconfident in react but from the day i was start learning from you things are getting super easy thankyou for your love support and effort sir we love you and good wishes to you too.
@user-rp1ou6tq7x
@user-rp1ou6tq7x 12 күн бұрын
Sir your all course is sach in a depth. Thank you for teaching us in depth. I have earned many things which I use in my projects.
@user-rj7lr2ji5l
@user-rj7lr2ji5l Ай бұрын
Much much better than any paid courses....Thankyou sirr...😊😊
@webDev524
@webDev524 2 ай бұрын
You are the best teacher in the youtube and method of teaching is extremely good.
@parthpitroda35
@parthpitroda35 4 ай бұрын
I completed the challenge you gave in the end of the video about not allowing to increment the counter to more than 20 and decrement the counter to less than 0 using ternary operator
@user-hr5ub3yi3l
@user-hr5ub3yi3l 24 күн бұрын
excited to know what more can be offered than such quality content
@user-wt8qm9rv1f
@user-wt8qm9rv1f Ай бұрын
Thanks a lot bhaiya! These videos really help to clear basics of react
@VikashKumar-gm6ym
@VikashKumar-gm6ym 2 ай бұрын
great content sir. Had seen videos of almost every creator on youtube bue never got the confidence in coading but sice whwn i started following you i am getting that confidence
@AmanKhan-wx5xo
@AmanKhan-wx5xo 15 күн бұрын
You are the best teacher for react in the KZbin because you learn how to work in the industry level projects. Thank you so much sir for this amazing series 😊😊
@vlogsdiaries4250
@vlogsdiaries4250 3 ай бұрын
thank you for the video, the way you explain by making small projects make it easy to understand, keep making such videos.
@ajsklandsoftverse_1824
@ajsklandsoftverse_1824 3 ай бұрын
Great! just great way of learning the concepts. Thank You ! Hitesh Sir!
@pcwinds653
@pcwinds653 3 ай бұрын
Sir aapka padhane ka style bahut hi majedar hai...👌
@mayeshafairuz
@mayeshafairuz 4 ай бұрын
Singlehandedly leveling the playing field in the tech industry! Thank you Hitesh sir! for your revolutionary mindset & dedication to the craft.
@adamyasharma_0135
@adamyasharma_0135 3 ай бұрын
best explanation on hooks with perfect explanation on need of hooks
@aywallah1008
@aywallah1008 4 ай бұрын
Hitesh sir explain the process clearly why we used hooks. 🎉
@Prince-hy9ng
@Prince-hy9ng Ай бұрын
when i saw your video of any any concept i did not understand completely but after watching videos 2nd time all concepts clears automaticallly and i never forgot about taht concept ❤
@sagarikasahoo1044
@sagarikasahoo1044 3 ай бұрын
Greattt Explanation!!! Thank you so much🙌
@SuchishreeSengupta
@SuchishreeSengupta 2 ай бұрын
Love the way you teach.Very detailed
@user-jp9jd6el1f
@user-jp9jd6el1f Ай бұрын
Sir literally your teaching style is awesome
@user-xo7ud1rj3d
@user-xo7ud1rj3d 4 ай бұрын
fell in love with your explanation of react in this valentine
@Rob_in_Malhotra
@Rob_in_Malhotra 7 күн бұрын
Hands Down, the best React series. The way things are explained, marvellous!
@amitghosh8369
@amitghosh8369 4 ай бұрын
Hats off sir for your detailed explanation🙌
@utsavbarnwal7120
@utsavbarnwal7120 4 ай бұрын
MindBlowing Lecture !!
@rahulchaubey7176
@rahulchaubey7176 3 ай бұрын
Tagdi video hai Hitesh . Maja aa rha h sikhne me.
@satyamdhamne3541
@satyamdhamne3541 2 ай бұрын
Nice way of explaining use of hooks .
@Waleed._.Ahmed.
@Waleed._.Ahmed. 3 ай бұрын
The approach you take for explaining is just amazing ❤🎉
@harikalakshmisainannapanen181
@harikalakshmisainannapanen181 Ай бұрын
u are the best sir. best react series ever with such great explanation!👏👏
@guptasagar694
@guptasagar694 4 ай бұрын
Thanks Hitesh Sir,You are the Best Gift to Indian Software community!!
@nehabansal370
@nehabansal370 3 ай бұрын
Very rightly said sir, any topic can be better understood, when we the need of it. Thankyou so much sir for making each and every topic so easy.
@akshayphutane2393
@akshayphutane2393 4 ай бұрын
Following you from chai aur javascript, amazing learning experience😃
@Rahulkumar-zf4rl
@Rahulkumar-zf4rl 4 ай бұрын
your explanation is really amazing its very help full for me thanks u Hitesh sir
@popli10
@popli10 2 ай бұрын
One of the best teacher i have ever learnt from
@DeveloperAzhar
@DeveloperAzhar 2 ай бұрын
Great explanation Hitesh sir 😍, your video made it even clearer for me
@modokgaming236
@modokgaming236 4 ай бұрын
Thank you for the series❤
@athravmehta4598
@athravmehta4598 3 ай бұрын
Comment krne ke liye specially, office ke laptop m login kiya hai, and yes cricket vali baat yaad rhegi. haha, ... but seriously man very nice explanation .... loved it.
@vikrantkashyap4309
@vikrantkashyap4309 3 ай бұрын
Very light but deep session I am enjoying learning here😊
@sanketgupta1000
@sanketgupta1000 Ай бұрын
Really great. Thank you very much for what you are doing ❤
@corunesbhatti
@corunesbhatti Ай бұрын
one of the best course on KZbin for React js
@ayushranjan1712
@ayushranjan1712 3 ай бұрын
Amazing sir. the way you are teaching is genuinely understanding to all 🙏
@TechGenius24x7
@TechGenius24x7 Ай бұрын
sir you are the best teacher i ever seen!!!👍
@SayantanHack
@SayantanHack 25 күн бұрын
Such a deep and base level video thanks for making this kind of content. Hindi me ayse content is not available anywhere. Please dont make this private.
06 Virtual DOM, Fibre and reconciliation
21:21
Chai aur Code
Рет қаралды 122 М.
Ironman reject money 💸 mystery box😱😳😲
0:44
The Target siblings
Рет қаралды 337 М.
DELETE TOXICITY = 5 LEGENDARY STARR DROPS!
02:20
Brawl Stars
Рет қаралды 17 МЛН
1 класс vs 11 класс  (игрушка)
00:30
БЕРТ
Рет қаралды 3,6 МЛН
Framework War - Which framework is best for beginners ?
13:19
Chai aur Code
Рет қаралды 9 М.
This is why you are not confident in logic building
7:15
Chai aur Code
Рет қаралды 27 М.
How to prepare your Frontend System Design Interview
13:21
I Code It
Рет қаралды 17 М.
Learn useState In 15 Minutes - React Hooks Explained
15:45
Web Dev Simplified
Рет қаралды 1,1 МЛН
NEVER lose dotfiles again with GNU Stow
14:33
typecraft
Рет қаралды 16 М.
HTTP METHODS
13:38
Piyush Garg
Рет қаралды 48 М.
Living Life On Edge: Adventures Of Car Thief Dhani Ram
8:02
Why are you not creating anything in c++ ?
14:46
Chai aur Code
Рет қаралды 67 М.
A react interview question on counter
8:26
Chai aur Code
Рет қаралды 84 М.
☺ Неожиданная встреча спустя полгода
0:27
Мария Шортс
Рет қаралды 3,8 МЛН
Каха ограбил банк
1:00
К-Media
Рет қаралды 2,8 МЛН
ТОҚАЛМЕН АЛЫСҚАН ЖЕТІМ ҚЫЗ/ KOREMIZ
46:54
Көреміз / «KÖREMIZ»
Рет қаралды 299 М.
🍜The Kid Put Chili Sauce In Daddy's Noodles🥴🫣
0:21
BorisKateFamily
Рет қаралды 11 МЛН