I have done Java Script course from Angela Yu and I am doing it again from this course which is even better than the paid course. I thought that this will be like a revision course for me but no I am learning a lot of new things which I missed in those paid courses and at last I want to thank you for making such great videos.
Sir Big fan sir How can someone be sooo cool and open minded sir you are teaching us to code even in this time period where everything in education requires money...
Day 58 #100DaysOfCode with CODEWITHHARRY, JavaScript, today we learn about Various promise methods like .all(), .allSettled(), .race(), .any() .resolve() and more .
Harry se better Web-Dev koi nhi padhaya hai, maine bhot sare alag alag sources se kuch kuch padha hai, but literally he is best. I dont know about his Dsa, but Dev side is best.
Enter Password Interface Made using promise let data = prompt("Create your Password"); let condata = prompt("Confirm your Password"); let promptdata = new Promise ((resolve , reject ) => { if (data == condata) { resolve("Correct") } else { reject("Password doesnt match") } }) promptdata.then((value) =>{ alert(value) }).catch((error) =>{ alert(error) })
this is an amazing java script course, thanks to handwritten notes provided by you...helps alot to revise concept. i would suggest if you provide hand written noted for back end dev using java script that will be very useful ...
I try find this Answer more 4 hours A web developer is creating a function to return a promise. Consider the following JavaScript promise function: function greeting() { return Promise.resolve("Welcome"); } How can the developer create an asynchronous function that returns a promise? return "Welcome"; } function greeting() { return "Welcome"; } function greeting() { return resolve("Welcome"); } await function greeting() { return "Welcome"; }
Harry bhai Last wali baat smjh nhe ay "jub library use krte he to automatically promise kses return hogi or mimic krna smjh nhe aya " ye thora technical line the please next video me es ko thora explain krdena. Thanks 🔥waiting for more video. 👍
mai lectures dekhne ke chakkar me video like krna bhool jata hu #harrybhai... plz dont mind ya,.., isme bhi appki hi glti ha qki appke lectures kaafi mazedar rhte ha ....//// LOT'S OF LOVE #harribhai ...
not understand promise.resolve and promise.reject, why we are using this , if we know it going to resolved or rejected, or we are fixing the values before P1 calls
Sir jaisa ki aap kahte hai ki web development m jab career just start hi kar rahe ho to 100% JS mat pado...So I want to ask ki mujh jaise students ko iss series ka kitna portion filhaal ke liye cover karna chahiye?
Harry suggested on a u tube short video about a replet or replit i m not sure. I want to download what he suggested to code mobile. Can anyone tell me what was that exactl??
I have done Java Script course from Angela Yu and I am doing it again from this course which is even better than the paid course. I thought that this will be like a revision course for me but no I am learning a lot of new things which I missed in those paid courses and at last I want to thank you for making such great videos.
Angela Yu course is literally overhyped!.......i had seen her css too it wasnt up to the level as harry made it
Me too broo🔥
good to hear that we are in good hands.... ❤❤❤
Yeah man mujhe bhi Coding Ninjas ke course se better laga
@@sagardas4218 how much was the cost?
views are reduced video by video in playlist which means people are not sticking to course, only hardworking people will make it to the end :)
Sir Big fan sir How can someone be sooo cool and open minded sir you are teaching us to code even in this time period where everything in education requires money...
Tysm Harry bhai bcoz of u ,I am confident that I can do MCA after my bsc physics..
22ai mt kriyo... Skills bna ke isse achha khi internship krle coding ...ki
@@gonisood2896 mai bsc maths ke baad mca krne wala hu nit see
Day 58 #100DaysOfCode with CODEWITHHARRY,
JavaScript,
today we learn about Various promise methods like .all(), .allSettled(), .race(), .any() .resolve() and more .
Harry bhai ye video dekhne ke bad i m in love with promise😍😅😂tysm for teaching in such a easy and simple way.😇
Harry Sir You are making nice video.Notes also nice.And also you give an example which will make concept clear.I like promises video very much!
ohhh man this was so easy to understand Thnaks HARRY bhai
This course is really amazing. Thank you so much Sir ❤️❤️
Harry se better Web-Dev koi nhi padhaya hai, maine bhot sare alag alag sources se kuch kuch padha hai, but literally he is best.
I dont know about his Dsa, but Dev side is best.
Very useful promises method . Thank You Harry
Finally kch smjh me aya lasf 5 videos se kch smjh ni aa rha tha
Maza aa rha hai. You are fascinating.
Majja aagaya hari bhai, bohot mast padhate ho thanks you yaar
Enter Password Interface Made using promise
let data = prompt("Create your Password");
let condata = prompt("Confirm your Password");
let promptdata = new Promise ((resolve , reject ) => {
if (data == condata) {
resolve("Correct")
}
else {
reject("Password doesnt match")
}
})
promptdata.then((value) =>{
alert(value)
}).catch((error) =>{
alert(error)
})
Lot of love from Punjab, Pakistan. 😍
Thankyou for taking the decision of teaching us. Appreciate it x10000
this is an amazing java script course, thanks to handwritten notes provided by you...helps alot to revise concept. i would suggest if you provide hand written noted for back end dev using java script that will be very useful ...
Harry Bhai you explain it very well maza agaya 🔥🔥🙌🙌
Amazing Harry Bhai 🔥
I try find this Answer more 4 hours
A web developer is creating a function to return a promise. Consider the following JavaScript promise function:
function greeting() { return Promise.resolve("Welcome"); }
How can the developer create an asynchronous function that returns a promise?
return "Welcome"; }
function greeting() { return "Welcome"; }
function greeting() { return resolve("Welcome"); }
await function greeting() { return "Welcome"; }
Please make a series on redux thunk or redux saga with a project🙏
Thank you sir for creating this video!
Awesome course hats off to your hardwork
Bhaiya can you make a cybersecurity and ethical hacking playlist
Yes bhaiya same
no
Harry Bhaiya could you tell us :
*IS COURSE ME TOTAL KITNE CHAPTER HONGE ?*
Really helpful harry bhai............ you're amazing
Promises method 🔥
#JavaScript
5 MIll🎉
5:40 gajab bezati hai #Harrybhai
Iss Javascript ke jaise ek PHP ka bhi playlist bana dijiye....🙏
Harry bhai you are the best
Mujhe bhi bahut badhiya laga
Harry bhai Last wali baat smjh nhe ay "jub library use krte he to automatically promise kses return hogi or mimic krna smjh nhe aya " ye thora technical line the please next video me es ko thora explain krdena. Thanks 🔥waiting for more video. 👍
mai lectures dekhne ke chakkar me video like krna bhool jata hu #harrybhai... plz dont mind ya,.., isme bhi appki hi glti ha qki appke lectures kaafi mazedar rhte ha ....//// LOT'S OF LOVE #harribhai ...
harry Bhai replit ki Shortcut keys bhi bata diya karo
let promise = Promise.resolve([p1,p2,p3,p4])
promise.then((value)=>{
console.log(value)
})
4) [Promise, Promise, Promise, Promise]0: Promise {: 'Value 1'}1: Promise {: 'Value 2'}2: Promise {}3: Promise {}length: 4[[Prototype]]: Array(0) why promise 3 4 are pending !! harrybhai can you explained me again !!
haary bhaiya aap kb #59 video kb upload kroge m wait kr rh hu ?🙂
thanks! jazak Allah!
8:29 Bhai maja aagaya
Advance JavaScript bhi include karo bro, like destructure ,spread operator,..
Bro coding ninja ka course pay after placement kya fake hai??
@@sajibdas8934 bilkul fake hai mat lenna
@@deepakkansal9112 okkk
@@sajibdas8934 liya to nh?
@@deepakkansal9112 nehi liya
Please Make A video In Ajax axios Fetch api
Harry Bhai Array.from kansi situation mya used karna chaeya yak video banaado plzz ..
shukriya bhai
Thankyou Harry Sir! 🌸
thank you harry maja aa raha hai
❤❤ se Thank you for 58
Best teacher
Thanks for the information ℹ️
Going Good... Harry..
not understand promise.resolve and promise.reject, why we are using this , if we know it going to resolved or rejected, or we are fixing the values before P1 calls
Thankyou harry bhai ❤
People moving to async await meanwhile mujhe resolve aur reject bhi samaj nhi aaya
Bhai 1 fastify ka tutorial b bna do
bhaiya which mic are you using in intro part?
Aur h chapter 9 upload ker bo please 🥺
Harry bhai python wali video me comments check kr lijiye pless
How to retrieve videopost &Image post mix. In firebase any videos plz help
Harry Bahu
.
.
.
.Aap ne kaha se coding sikha h
Bro please explain about kotlin vs java which one to choose
Kotlin
kotlin
Thanks Sir 🥲
Sir aap react-native par koi video bana do please
Abhi Maja aa raha h bhai
harry bhai notes which are shown in this video , i was not able to find in the link given below in description , Harry bhai madat karo
Chapter 9 k notes nhi apki gdrive m pls upload krdo sir
Promise.all([p1, p2, p3]), Promise.allSettled([p1, p2, p3]), Promise.race([p1,p2,p3]), Promise.any([p1,p2,p3]), Promise.resolve([p1,p2,p3]), Promise.reject([error])
bhaiya also cover event listener
Fully understand !
Sir jaisa ki aap kahte hai ki web development m jab career just start hi kar rahe ho to 100% JS mat pado...So I want to ask ki mujh jaise students ko iss series ka kitna portion filhaal ke liye cover karna chahiye?
harry bhai ne web development ki bhi series bana rakhi hai aap use dekh sakte ho.
@@sagarpanwar2845 hn maine dekha hai🙏
Gd morning sir 😊😊
HARRY BHAI PYTHON PLAYLIST MAI JUPITER NOTEBOOK BHI SIKHA RHE HO KIA
Harry suggested on a u tube short video about a replet or replit i m not sure. I want to download what he suggested to code mobile. Can anyone tell me what was that exactl??
Replit
Well and Good
Harry Bhai update the notes drive link with chapter 9 pdf
🎉 love you bro❤❤
Harry Bhai how it possible into in blue tshirt and video in red 🧐
Harry bhai py_script ka course lao
Mane website create ki bt use published kese kru
Nice work bro 👍🏼
Bro, the notes given by you are only till chapter 8 , where are the rest of the notes.
Sir I think your income tax calculation in C is wrong programme
Please check and inform 🙏🙏
Nice sir
harry bro chapter files download nhi horhi
Sir I'm not able to access ur c notes it's getting downloaded but it says error occurred when I try to open it can u pls help me to access that notes🙏
download it from his website
@@tabishamir5943 I'll try and thank u for ur reply 😊
Bhai kitni videos hai total?
Gajab
How are you guru dev
Chapter 9 ka pdf nahin mil raha
👍🏻👍🏻
Coding Ninja ka career camp pay after placement fake ya real hai???
Thank you :)
Coding ninja ka career camp pay after placement fake ya real hai??
Sir notes ki pdf kaha haii
bhai ya we want to know that the old playlist of java script will be helpful for us or we want to see that playlist
Go for new one
And for revision you can prefer old one
th-cam.com/video/hKB-YGF14SY/w-d-xo.html ye wali dekhni hai ya ye course fisrt konsa kre @codewithharry bhai bolo
Obviously, updated content is better!
@@starandyt9120 But brother I have started that old video yesterday
Nice
Abhi kitne videos aane baakhi hai?
is React included in this course?
No
Bhai ek br api bhi explain kr dena kisi video mei
🙏
Please teach in English as well.
👍👍
Bhai sandeep maheshwari k show pe jao plz