Objects in depth in javascript in hindi | chai aur

  Рет қаралды 183,256

Chai aur Code

Chai aur Code

Жыл бұрын

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

Пікірлер: 292
@quickSilverXMen
@quickSilverXMen 10 ай бұрын
@1:13 objects intro @7:20 object key using symbol datatype @9:30 adv. @11:00 freezer( ) method in object @12:00 symbol snip again
@razashah7881
@razashah7881 26 күн бұрын
Sir bundle of thanks, yahan tk pohnch kar mujhe wakeyhi lag ra hey k ye course bohat keemti hey, is sey pehley me 2 bar JS ko doosrey mentors sey bhi kar chuka hun, ab third time aapse seekh raha hun, yahan aa kar mujhe aik bat ki zroor realization hui hey, wo ye k ab me ye dekhta hun k jis mentor sey me seekh raha hun, usey khud ko JS ka kitna pata hey, me sabhi mentor ki izzat karta hun, lakin in depth kabhi na kabhi student k dil esa phase zroor ata hey k wo critical way me sochney lagta hey, aik to aapkey teaching style bohat unique hey, or friendly hey, secondly aap apni tarf sey bharpoor try kartey hen k me jo bat samjha raha hun, wo student k dimagh me literally ghuss jaey.
@ayaniegain
@ayaniegain 10 ай бұрын
The uniqueness of your course, you not only teach the topic but also learn the exact use of it.🥰
@HydroJudge
@HydroJudge 9 ай бұрын
Iss lecture mein jo sir ne concepts bataaye hain woh sach mein in depth hain. Notes banaake aur ache se samajh aata hai. This series is lit.
@user-eq6mj3fk9x
@user-eq6mj3fk9x 10 ай бұрын
finally found a great teacher on youtube , really really helpful
@abdush5830
@abdush5830 Жыл бұрын
love you sir..ye Internet ki best series hai JS ki..Jitna aap deep explain kr rahe hain utna kisi ne ni kia hai Yt pr...very thanks Sir
@phantomcatprojects8546
@phantomcatprojects8546 Жыл бұрын
hitesh sir be like raat 12:30 baje hai to best object tutorial to bana lu
@babarshabbir2554
@babarshabbir2554 Ай бұрын
"Excellent tutorial, covers JavaScript objects' depths neatly! Loved the chai tea and code puns. #JavaScript" Note: This comment is written in Hindi script, which would look like - "पर excellant ट्यूटोरियल है, सक्षम JavaScript objects की depths निग्रानी करता है! Chai tea और code शब्दों से प्यार लगाया। #JavaScript"
@tech_channel110
@tech_channel110 11 ай бұрын
Best video on internet Shandar lecture Keep making such an amazing video lecture for us These lectures are very helpful for us
@cherishkansara7851
@cherishkansara7851 3 ай бұрын
Sir woh last mein undefined isliye araha hai kyuki function Console log kar raha hai na ki kuch return kar raha hai or an function ko console log mein print karwa rahe hai toh isliye undefined araha hai
@Quickkit
@Quickkit Жыл бұрын
@15:15 hello sir,undefined is the return value of the function greeting( ).
@farazahmed1668
@farazahmed1668 10 ай бұрын
Q k humne dar-asal value ko print karwaya hai na k return, to jab kuch b return nahi hoga... to by default undifined he return hoga.
@tusharsachdeva3654
@tusharsachdeva3654 6 ай бұрын
Thanks! Awesome way of explanation man. Damn
@vlogs4u968
@vlogs4u968 10 ай бұрын
Thank you sir ji main thoda research kiya ki KZbin pr available js ki jyadatar playlisto pr really sir ji sabse alak hai aapki playlist concept ko apne alak hi tarike se bataya hai bahut bahut dhanyavad sir ji
@learning-shaharyar550
@learning-shaharyar550 Ай бұрын
10:00 The syntax of declaring a symbol inside object still does not seem to be correct because upon console.log(typeof JsUser[mySym]); // It returns *string* , whereas ideally it should return Symbol as its dataType.
@hobabu7066
@hobabu7066 Ай бұрын
Same doubt, have you got any answer ?
@shaharyaransari4887
@shaharyaransari4887 5 күн бұрын
@@hobabu7066 The Explaination was quite confusing. However following code prints type of symbol: // Objects let mysymbol = Symbol('Key1'); let myobj = { name: "Shaharyar Ansari", id: 1232, [mysymbol] : mysymbol } console.log(typeof myobj[mysymbol]);
@shaharyaransari4887
@shaharyaransari4887 5 күн бұрын
The only reason for using Square brackets inside an object is to assign a dynamic key. Forexample: let key = 'dynamicKey'; let value = 'This is a dynamic value'; let obj = { [key]: value }; console.log(obj); // Output: { dynamicKey: 'This is a dynamic value' }
@user-np8rk3nh7q
@user-np8rk3nh7q 5 күн бұрын
i think jaldbazi mei sir bhool gye
@user-ob8cv5wy7g
@user-ob8cv5wy7g 6 ай бұрын
omg i've seen such a high quality oontent like this on yt , i'm just getting jealous that many people can have access to this video and they'll be getting more info....damnn bro,this playlist is lit
@Sgsbakers
@Sgsbakers 8 ай бұрын
in greeting & greetingTwo functions you log messages to the console but don't return anything, so they implicitly return undefined as an output after every console. But when we use return keyword in functions instead of console.log it will not output 'undefined'.
@agentNirmites
@agentNirmites 5 ай бұрын
Why he didn't get it?
@parvahuja7618
@parvahuja7618 4 ай бұрын
true, because whenever we are using { } we have to explicitly write return whereas when simply using ( ) we do do not need to write it
@formeusgamer4327
@formeusgamer4327 Ай бұрын
Buhat achy sy apny explain kra Hai,🥰
@biswaranjansahu66
@biswaranjansahu66 4 ай бұрын
There are no words for your teaching skill and knowledge sir.
@milindchaturvedi9770
@milindchaturvedi9770 4 ай бұрын
The best series on the internet !
@rizwansaifi3590
@rizwansaifi3590 2 ай бұрын
7:02 the issue with the object property "first name" when trying to access it as (object.first name ) is because of space , if the property name was "first" then in that case it is easily accessible as object.first or object["first"] both will work . As any property name is coerced as string
@KoushikBiswas-jo7iy
@KoushikBiswas-jo7iy Ай бұрын
Yes both should work.
@NiteshChaudhary07.
@NiteshChaudhary07. 7 ай бұрын
Mene bahut video's dekhi par maja nahi aya apki video dekhta hu to sach me apke video's achhe lagte he aur helpfull he thank you
@AbdulHameed-to3sg
@AbdulHameed-to3sg 9 ай бұрын
no doubt sir you are great teacher
@CodeWithDhruv-sy5bs
@CodeWithDhruv-sy5bs 4 ай бұрын
The reason of undefined is because the greeting function is not returning anything it is just priniting thats why the return type is undefined
@vasudev3744
@vasudev3744 3 ай бұрын
sir the undefined value that is being printed on the screen is bcoz u r printing the return of the function which is not defined console.log(JsUser.greeting()) is wrong instead use JsUser.greeting() for calling the function
@youtube_reels..
@youtube_reels.. 29 күн бұрын
thank you
@AmitRaj.2
@AmitRaj.2 9 ай бұрын
The full name has space in between and thus it cannot be acessed using . Notation but if there is no space and if we type the key in string expression like 'fullname' it can be accesed using . Notation
@gamingwithme630
@gamingwithme630 4 ай бұрын
right bro
@harishankarthakur388
@harishankarthakur388 9 ай бұрын
This series is very addictive❤
@md.talibansari7388
@md.talibansari7388 8 ай бұрын
@14:51 "undefined" is appearing because the function is not returning anything, and you have called the function inside the console.
@satyanarayandalei-rz2kw
@satyanarayandalei-rz2kw 4 ай бұрын
Exactly
@SyedAsif08
@SyedAsif08 6 ай бұрын
understood objects in js very well.....................................
@set1675
@set1675 9 ай бұрын
THIS SERIES IS SO ADDICTIVE , MY GOD😍😌
@Bca.Wallah
@Bca.Wallah 4 ай бұрын
This is literally The best javascript playlist on KZbin. Hope the way you guide the students will truly bring a revolution. Lots of love Sir😍❤❤
@kazitanim007
@kazitanim007 6 ай бұрын
When u call the function directly instead of console.log - "undefined" doesn''t show on the console.
@srijareddy1088
@srijareddy1088 23 күн бұрын
Thank you very much sir
@usama5619
@usama5619 9 ай бұрын
thank you! great teacher !
@shouviksarkar7900
@shouviksarkar7900 29 күн бұрын
14:51 undefined is bcz in greeting function we already had console.log('message') ...but while calling the function you used console.log(greeting()) again. due to to console.log() we are getting an undefined. Just write gretting() and there will be no undefined. same goes for 17:05
@nivilsangwan7352
@nivilsangwan7352 3 ай бұрын
his eyes have that dark thing around them indicating the tiredness. BTW I am loving your videos and I am actually a 9th grade student and am able to understand almost everything. This course is better than any other course I've seen on YT. Thank You Sir.
@WatchNotchK2S
@WatchNotchK2S 4 ай бұрын
Sir , JsUser.greeting(); should be used to call the function and print the value in it. as you console.log(JsUser.greeting()) & console.log(JsUser.greetingTwo()); it want function to return a value and give the answer , thus you get udefined in the browser ( Correct me if i am wrong )
@saumyadipdutta5419
@saumyadipdutta5419 3 ай бұрын
Hello @Hitesh Sir, I think undefined in the last , is coming from console.log(). If we write JsUser.greeting() only then undefined will not show
@kamilsiddiqui4252
@kamilsiddiqui4252 4 ай бұрын
symbol is getting accessed without using square brackets in both the places in 2024 has the syntax for symbol changed ? I guess so as I used typeof() without square brackets it shows that it is a symbol datatype.
@krishnavamsi1126
@krishnavamsi1126 Ай бұрын
THANKS A LOT BRO
@shashankmishra9014
@shashankmishra9014 Ай бұрын
undefined @15:10 is due to the fact that console.log print what is returned when so in this case when greeting is used nothing is returned so fun returns undefined which is printed.
@ECommerceNews
@ECommerceNews 8 ай бұрын
Function execute hone k baad jo "undefined" print ho raha hy wo function ki return value hy. am i right?
@fawaz_exe
@fawaz_exe 6 күн бұрын
@ 14.46 It gives undefined as we did not use return keyword there. If we use return it will not print undefined.
@rjsuraj1205
@rjsuraj1205 9 ай бұрын
hey can anyone explain as Sir said constructor creates singleton objects , But constructors are used to create instances of objects, not specifically singleton objects.I am confused can anyone explain plz
@FairyhunterGG
@FairyhunterGG 9 ай бұрын
Why can't I use the 'this' keyword in an object method with an arrow function?
@bngdtutorial2947
@bngdtutorial2947 3 ай бұрын
when i am writting jsuser.greeting(); then it simply printing the result but, while writting console.log( jsuser.greeting()); then it printing the result along with undefine. It may due to we are not returning any value and still trying to console.log() .
@shashankkumarpandey4184
@shashankkumarpandey4184 6 ай бұрын
15:00 , you are using console.log(console.log()) thing thats why undefined coming, just like python when you do print(print("Hi")), it gives hi then none. print statement inside print statement. i don't know if my logic is correct but i can think of this only right now.
@lokinagure
@lokinagure 5 ай бұрын
Bilkul sahi he.
@SuryaKarigar
@SuryaKarigar 9 ай бұрын
Wow [ ] can take my job 😂😂 I better need to be ready for Interview Sir. It’s creating fear and confidence at the same time
@YamrajShrestha
@YamrajShrestha 9 ай бұрын
I've been fortunate to have incredible guidance on my journey to becoming a full-stack programmer. Learning with the help of this amazing tutorial, I've been steadily mastering JavaScript, and it's been an enlightening experience. A big thank you to my learning companion for being there every step of the way.
@zaindev31
@zaindev31 6 ай бұрын
hh
@zaindev31
@zaindev31 6 ай бұрын
kkk
@RiteshKumar-yq4cx
@RiteshKumar-yq4cx 4 ай бұрын
wts the meaning of Array.from() , does it mean we are calling a from() method from Array object
@Abhinav-ep7vb
@Abhinav-ep7vb Ай бұрын
Gold Js Content ON YT . keep Creating more content sir
@aaaaaannnnnnnaaaaaannnnnnn
@aaaaaannnnnnnaaaaaannnnnnn 4 ай бұрын
*Sir really React complete karney kay baad dekh raha ho concepts ko clear karney kai liyay ab samjh araha hai in depth course ka matlab😃*
@saadkashif880
@saadkashif880 4 ай бұрын
same bhai react course complete kia hay or ab ye dekhna start kia or boht maza aaraha
@lovetriangle3232
@lovetriangle3232 2 ай бұрын
Thankyou for theamazing video sir but at 17:05 ,the output undefined occurrs bcoz in the line no 38 you used console.log to print a function(jsuser.greeting()), function directly excute when it called just by jsuser.greeting(),why we need to write console.log(jsuser.greeting()). i guess you miss that part sir.
@ammarsiddiqui6486
@ammarsiddiqui6486 10 ай бұрын
sir is tutorial very help full for me jo me chz ki sekhe oski practise kasie kare for eg aj hum ne object seekh hai?
@md.abidullahmuhib
@md.abidullahmuhib 3 ай бұрын
Hi there, in this lecture we are getting undefined because we are executing a function inside console.log();. By executing JsUser.greeting(); we are printing "Hello JS user". And the execution value of JsUser.greeting() = undefined. Which we are printing by console.log(JsUser.greeting());. Waiting for a reply. Correct me if I am wrong. Love from Bangladesh 🇧🇩 .
@vaibhavpalaria5821
@vaibhavpalaria5821 10 ай бұрын
Sir ji pranam Thanks for a superb video
@mansoorafzal4344
@mansoorafzal4344 5 ай бұрын
Excellent Work Done bro
@sahilgupta7001
@sahilgupta7001 3 ай бұрын
the function was showing undefined because you logged a function which was not returning anything, how could you not get this simple thing
@user-np8rk3nh7q
@user-np8rk3nh7q 5 күн бұрын
all the comments solve my residual doubts thank you guys
@JavidSumra786
@JavidSumra786 Жыл бұрын
Sir I think greeting function giving undefined because of we are printing this function so it expect some value
@KrishnaArt13
@KrishnaArt13 Жыл бұрын
console.log("=======jsUser.greeting()====",jsUser.greeting()); console.log("=====jsUser.greetingTwo()======",jsUser.greetingTwo());
@karanbhandari1534
@karanbhandari1534 8 ай бұрын
the undefined in the last part was occurring because he was logging the invocation of the function..?
@hamvlogwale
@hamvlogwale 4 ай бұрын
love this playlist
@BitFire007
@BitFire007 4 ай бұрын
"Chai aur Code, you've successfully turned me into a JavaScript enthusiast. Your tutorials are gold!"
@kholaseerat2385
@kholaseerat2385 Ай бұрын
When i searched google about singleton , i found out that object literals are singleton ut you are saying they are not can u please clear this doubt
@abdulajim9633
@abdulajim9633 10 ай бұрын
Very nice js Course ✔✔❤❤❤❤❤❤
@munawarminhas7982
@munawarminhas7982 9 ай бұрын
in my case also there is 12:29 am haha,,, you are doing great sir, I eagerly await the backend series.
@chaiaurcode
@chaiaurcode 9 ай бұрын
Kya din, kya raat. Agr mza aa rha to kaam krenge hi
@munawarminhas7982
@munawarminhas7982 9 ай бұрын
sir the best thing is that we never get bored by your videos,, main ny bht sary courses starrt kiye is sy phly but end kbhi nahi hua koi bhi , but jb sy apka js course dekhna start kiya hai aj 35th video hai within one week,almost 4-6 hours+ daily screen k samny gzr jaty hain time ka pta nahi chlta ,smj b aa jati or practice b ho jati@@chaiaurcode
@user-ut8wp3uw7y
@user-ut8wp3uw7y 4 ай бұрын
@6:55 its giving access by full name by using dot
@arpdeepsinghparihar
@arpdeepsinghparihar 5 ай бұрын
can anyone tell which theme is used by sir
@krishnaanandiswaraa
@krishnaanandiswaraa 10 ай бұрын
im sorry to say sir , but problem , you alwasy said that , you explain in depth , but here in object sometime in vedio you type some syntax but dont explain them
@apnipathshala7866
@apnipathshala7866 6 ай бұрын
You can't learn objects is just 19 mins...you have to give 1 to 2 week for this... practice Vdo is only to take an overview of objects
@abirroy1978
@abirroy1978 5 ай бұрын
Bro If you want to depth understanding please go search harsith vasisth javascript full length video you will get depth in every thing..
@Bca.Wallah
@Bca.Wallah 4 ай бұрын
Bhai If you really want to learn JavaScript, you will have to work hard yourself. Read documentations. as sir says in all the lectures. Because there is no concept of spoon feeding here. hope all your doubts are cleared.
@user-ub2ol5ou7e
@user-ub2ol5ou7e 3 ай бұрын
Objects in javasript.... Thuje objects hee patga nahi tho kya faidha bhai.. OOPSnahi patha hai kya??
@prakhargupta4347
@prakhargupta4347 Жыл бұрын
maza aagaya. thank you so much sir.
@mrinvisible4095
@mrinvisible4095 4 ай бұрын
10:31 Sir, to use Symbol as a key, what if we use Map data structure!?
@ranjeetchoudhary112
@ranjeetchoudhary112 10 ай бұрын
I was waiting this type of video
@Mahin_katariya
@Mahin_katariya 3 ай бұрын
As of 2024 the part where sir wrote at 6:33 " fullname " : " hitesh choudhary " and while we were trying to access it using the dot method it wasn't accessing but now we can access it using the dot method.✅
@user-fk8yl8du5g
@user-fk8yl8du5g 3 ай бұрын
still mySym data type shows string why not symbol console.log(typeof jsUser[mySym]);
@pritamvlogs7061
@pritamvlogs7061 6 ай бұрын
sir wo ek excution isliye ho rha hai kyuki apne function call me v console.log krke call kiya hai isliye undefined show ho rha hai
@robot6716
@robot6716 18 күн бұрын
@17:09 undefined in console becuase at line number 37 and 38 in console log greeting() and greetingTwo function are called a which do not return anything explicitly and by default "undefined". is returned.
@nitishsingh925
@nitishsingh925 8 ай бұрын
Symbol is new to me 💯
@user-hf6om6ts1q
@user-hf6om6ts1q Ай бұрын
15:09 ye undefined line 34 se aa raha h qki at line 30, function greeting is not returning anything.
@vivekbhakhri735
@vivekbhakhri735 5 ай бұрын
Awesome!!
@thebusinesspostt
@thebusinesspostt 3 ай бұрын
Can anyone help me how to access ARRAY inside objects using bracket notation ?
@MonikaKumari-er4de
@MonikaKumari-er4de 3 ай бұрын
Thank you sir❤️
@akshaybadwaik-nl5ng
@akshaybadwaik-nl5ng 3 ай бұрын
thank you
@vtechcoding
@vtechcoding 26 күн бұрын
undefined iske liye kyuki function ko aapne call kiya inside console.log but function se kuch return nahe ho rha
@technoyash2970
@technoyash2970 8 ай бұрын
Thank you so much bhaiya
@update_coding1139
@update_coding1139 3 ай бұрын
Sir undefined esliye aa raha hai apne two times console use kiya hai
@shanksiuu
@shanksiuu 5 ай бұрын
15:00 maybe it's becuz of the absence of return value JsUser.greeting = function(){ return "Hello JS user"; } JsUser.greetingTwo = function(){ return `Hello JS user, ${this.name}`; } console.log(JsUser.greeting()); console.log(JsUser.greetingTwo()); OR function jsUser (name) { console.log(`Hello JS user, ${name}`) } jsUser("Hitesh")
@ritushrivatri6865
@ritushrivatri6865 3 ай бұрын
Awesome 😶‍🌫
@codethics4033
@codethics4033 2 ай бұрын
@10:09 the methode that you told still shoing that in string even i dicleared it correct way .
@GazzyYT69
@GazzyYT69 2 ай бұрын
same problem
@Solanki493
@Solanki493 Жыл бұрын
Chai aur code main mera swagat hi
@sanjoyal_world_07
@sanjoyal_world_07 11 ай бұрын
Guru jee ..next video upload kijiye js chapter 49 k baad se ...
@rajatkatal9311
@rajatkatal9311 2 ай бұрын
appko 34th line pr console log nhi krna tha ye usika "undefined" aa rha hai. usse direct call krte to sirf ek baar print hota woo...
@harshilsinha8640
@harshilsinha8640 6 ай бұрын
Sir undefined es liye aarha q ki aap function ko console m call kr rhe console ke bahar call kriye undefined ni aaega
@pratiklondhe3696
@pratiklondhe3696 2 ай бұрын
at 10:37 if i write console.log(typeof jsUser[mySym]); this then it also give me string type?
@harshitbrijwasi8059
@harshitbrijwasi8059 2 ай бұрын
Same
@All-about-lea_rning
@All-about-lea_rning Ай бұрын
the reason of undefined kyu ki aap ne function me console kiya hai aur execute ke time per bhi aap console kar rhe hai ya to execute ke time console mat kijiye ha to function me se console ko hata ke return kardo
@pushpendra10001
@pushpendra10001 9 ай бұрын
sir tell me one thing after using square brackets it still give me type of symbol is string why ???? it only show under the object but if check the sybol type of on console it shows it is string
@varchasvh02
@varchasvh02 4 ай бұрын
I was thinking the same.
@user-ub4er8ij5j
@user-ub4er8ij5j 3 ай бұрын
I too started watching this video at 12:30 AM
@ShudhanshuShree
@ShudhanshuShree 4 ай бұрын
undefined is coming because the function greeting and greetingtwo is not returning anything and you are printing the output inside console.log(greeting());
@aryangaur228
@aryangaur228 10 ай бұрын
Thank you very much sir!!
@mahadevprasadpal7829
@mahadevprasadpal7829 3 ай бұрын
Did not get the "symbol" part. Can anyone please help me understand?!
@gauravmangal5191
@gauravmangal5191 Ай бұрын
Two things, Primarily the undefined you were getting was because you were trying to print the output of the greeting function and since it returned nothing you got "UNDEFINED". Secondly, when I am printing the typeof obj[symbol] its printing undefined. IDK if its supposed to be this way or not. If anyone have time can you elaborate a lil.
@siddharthrathore-lb8su
@siddharthrathore-lb8su Ай бұрын
for me obj[symbol] is printing string. Maybe you should check your code for any typo.
@lokinagure
@lokinagure 5 ай бұрын
Namaste Sir ji, In the Video code, JsUser.greeting() logs the message "Hello JS user" to the console but doesn't return anything. When you log the result of JsUser.greeting(), it prints undefined because the function implicitly returns undefined in the absence of a return statement. function ke andar ka log message print karta he, but kuch bhi return nahi karta he, phir bhi ham function call karte wakt log kiya to kya karega function bichara undefined hi return karega na!
@lokinagure
@lokinagure 5 ай бұрын
Loving your art of teaching and adating myself. Youre awesome Sir ji.
@Tech_Space_Warrior
@Tech_Space_Warrior 6 ай бұрын
Hi Sir! when you say that we didn't access the the value of a key when its in "full name" this formate but if we didn't give space it can and declear the key as full_name it can easily be access by consloe.log(User1.full_name). So what is that? explain please.
@songsbattle
@songsbattle 26 күн бұрын
Brother it was for understanding purpose only. In this, Sir wanted to show us the other ways of accessing the object key.
Objects in Javascript part 2 in Hindi | chai aur #javascript
17:43
Chai aur Code
Рет қаралды 132 М.
Functions and parameter in javascript | Hindi
19:14
Chai aur Code
Рет қаралды 161 М.
100❤️
00:19
MY💝No War🤝
Рет қаралды 13 МЛН
FASTEST Way to Learn Coding and ACTUALLY Get a Job
6:32
Rajeev Bera
Рет қаралды 17 М.
Object Oriented in Javascript | chai aur #javascript
32:03
Chai aur Code
Рет қаралды 116 М.
Events in Javascript | chai aur #javascript
36:57
Chai aur Code
Рет қаралды 175 М.
Promise in javascript | chai aur #javascript
50:21
Chai aur Code
Рет қаралды 215 М.
Why are you not creating anything in c++ ?
14:46
Chai aur Code
Рет қаралды 93 М.
THIS and arrow function in javascript | chai aur #javascript
18:29
Chai aur Code
Рет қаралды 150 М.
How does javascript execute code + call stack | chai aur #javascript
26:12
Урна с айфонами!
0:30
По ту сторону Гугла
Рет қаралды 8 МЛН