Learning programming mostly relies on understanding the concepts properly. And you make these concepts super easy to understand. Keep it up bro ❤️❤️❤️.
I have been using Javascript for 1 year!!! But when I watch your video, my concept is becoming clearer and clearer!!! Your teaching process is so easy and understandable like Kyle Cook of web dev simplified channel!! Thanks for these efforts, bhaia!!Hopefully one day by your lesson I will start learning & using redux though it will be so tough for me😋😋😋
My day does not go well without learning anything from your tutorial. It is so much fun to learn from you. Thank you. Please, keep continue this good work.
Sera,dada! *_* Some approx.. timestamps 11:58 Secure private variable or get private variable from the outsides of its scope 16:47 Js won't capture unused variable in closure scope 20:52 is global scope same as closure? 28:38 closure does not take the exact value of a variable rather it takes the reference of that variable. So, if the variable is changed then the variables value in closure is also changed 32:17 let,const instead of var - script scope 35:45 using closure to check the exicution time of a chunk of code. 41:58 for performance issue, we have to Maintain garbage collection of closure manually. 44:40 closure in asynchronous behaviour (51:00 closure in fetch api) 55:07 important interview question about closure 1:07:20 summary
MDN এর নতুন Doc.. অনুযায়ী Every closure has three scopes: Local Scope (Own scope) Outer Functions Scope Global Scope Execution context এ creation phase & execution phase এইখানে যখন ভেরিয়েবলে অ্যাসাইন হইতাছে ভ্যালু এক্সিকিউট হবার পরে সেই রেজাল্ট কনসোলে পাইতাছি, কিন্তু console.dir করে যেটা দেখতাছি এক্সিকিউট কমপ্লিট হবার পরে সামগ্রিক Scopes সেইটা রেফারেন্স করতেছে, এবং এইট শুধুমাত্র গ্লোবাল স্কোপের বেলায়, কিন্তু ইনার স্কোপে কিন্তু ক্রিয়েশন টাইমের ভ্যালুই ক্লোজারে দেইখাইতাছে। var num1 = 2; var num2 = 3; var sum = function() { var num3 = 4; return function () { num3 = 9; return num1 + num3; } } console.log(sum()()) console.dir(sum()) এই কোডটা রান করলে কিন্তু ক্লোজারে num3 = 9 না দেখিয়ে ৪ দেখাবে, কারন Execution Context এর execute phase এ আউটার ভ্যালু 4 ছিলো, বর্তমান ডক অনুযায়ী ব্যাখ্যা ভ্যালিডই আছে, ভুল কইলে প্লিজ......... আসলে নিজে নিজে এক্সপ্লোর না করলে এই জিনিস আয়াত্বে আসবে না, এইখানে এক্সিকিউশন কন্টেক্সট ক্লিয়ারলি বুঝতেই হবে, এমন একটা বুঝ লাগব যা দিয়া অলোয়েজ যে কোন কারন ডিফাইন করা যায় তখনই না কইতে পারি বুঝছি, তার আগে আসলে বুঝছি কইলে হব না
"Closure" বোরহানি খাওয়ার মত প্রথম বার খাওয়ার সময় ভালো লাগে না, কিন্তু বার বার খাওয়ার পর পুরো জগ একই খাওয়া যায়। এখন আমি পুরো "Closure" জগ টাই খেয়ে ফেলতে পারবো শুধু এই ভিডিও টা দেখে। দাদা আপনি এগিয়ে যান, খুব শ্রদ্ধা আর ভালোবাসা রইল।
Always love your videos, I can't say how many times I watched this playlist! Whenever I forget or get confused about core concepts I just come here again & again !
function bankAccnt(params) { var balance = params; return balance; } var acc = bankAccnt(10000) console.log(acc) ----evabeo toh access kora jay. Kono inner function chara. Ekhane ki kono closure ache ,dada?
Best video among best videos. Asa kori aponi ei vabei English e video ta translate kore deben tahole jara other language speaking people tarao khub valo ekta content pabe aponar madhome. Anyway thanks a lot dada :)
function outer () { let x = "hello"; const obj = {age: 25}; const arr = [1, 2, 3]; function inner () { var a = 5; console.log(x, obj, arr); } // console.dir(inner); return inner; } const inner = outer(); // ending outer function scope console.dir(inner); এখানে console.dir(inner) ইনারের মধ্যে স্কোপের জায়গায় যে ক্লোজার ওপেন হয়েছে এই ক্লোজারের স্কোপ ইনার ফাংশন এর মধ্যে নাকি বাহিরে????
Brother I have 2 confusion টিউটোরিয়াল এর 1:04:12 সময়ে scope এর ভিতর তো closure keyword টাও দেখানোর কথা তাহলে শুধুমাত্র এইবার ই কেনো block { i : 2 } দেখাচ্ছে ? 1:00:10 এ আপনি বললেন যে ১ম iteration এর পর ২য় iteration এ নতুন একটা i create হয় সেটা কিভাবে বুঝলেন? প্রমান কিভাবে দেখব
Background Sound tar Jonno concentrate korte parchina..amr already headache shoro hoia gese..kindly background sound ta remove kore abr deoa jai kina akto vebe dekben.. Vaia thanks
Thanks for your comment. Though Design Pattern is a huge topic with lots of abstraction involved. Currently I am focusing on practical implementations. Will try to cover design pattern someday. Thanks again for suggestion.
এই ভিডিও দেখার আগে Closure সম্পর্কে ধারনা ছিলো ০ % আর ভিডিও দেখার পরে মনে হচ্ছে ৬০-৭০% বুজলাম। ১০০% হয় নাই তার বড় কারন হচ্ছে যতদিন না এটা প্রাকটিকেলি ব্যবহার করবো ততক্ষন পর্যন্ত বুজা যাবে না। ধন্যবাদ ভাই, Closure এর ভয় থেকে অন্তত মুক্তি পাওয়ার জন্য ❤ 13 Nov, 2023
ভাই ,আমি আপনার অনেক বড় fan . ব্যাকগ্রাউন্ড এ music ছাড়া ভিডিও বানালে খুব ভালো হতো...নতুন turorial গুলা music ছাড়া বানালে আমাদের জন্য খুব ভালো হয়। কারণ ইসলামে music নিষিদ্ব। ..
প্রথমত যে কথা, সেটা হলো দাদা আপনার সরি শুনে নিজের কাছেই খারাপ লাগে। একজন এডুকেটর তার নিজের ওয়েতেই শেখাবে, সেখানে স্টুডেন্টকে এডুকেটরের ওয়েতেই বুঝতে হবে। এ রকম ওপেন প্লাটফর্ম এ তো কথাই নাই। আপনার মত এক একজন মানুষ, আর এত সুন্দর ভাবে ব্যাখ্যা করা ফ্রিতেই পাচ্ছি। সময়ের হিসেব না করে বুদ্ধিমানের মত শেখাটাই ভালো হবে। এখানে শিখতে এসে শুধু Closure ই না var, let কেও আরো নতুনভাবে বুঝতে পারছি। আপনি কষ্ট করে এত সুন্দর করে গুছিয়ে টপিকস গুলো আমাদের সামনে আনার জন্য ধন্যবাদ আপনাকে। নিজের ভাষায় এত প্রিমিয়াম, ক্লিয়ার কন্টেন্ট তাও ফ্রিতেই পাওয়া সত্যিই ভাগ্যের ব্যাপার। অনেক কিছু নতুন ভাবে ভিতর থেকে বুঝতে পেরেছি।
JavaScript নিয়ে জানতে চাইলে এবং ধৈর্য্য থাকলে আমার এই ভিডিওটা সময় নিয়ে দেখতে পারেন। অনেক কিছুই জানতে পারবেন। অনেক আগে করেছিলাম যদিও - ruclips.net/video/KuhLGuNxF8U/видео.html
bro what will be the next tutorial?? . i was eagerly waiting for this tutorial .. i have learnt a lot from this tutorial and from the previous tutorial .. and i want more from you.. i want a project using these kind of wirdo
Academic career e JavaScript oivabe sekhano hoyna. JavaScript holo web developement er jonno suitable language. Jodi future e web developer hote chao, tahole obossoi JavaScript khub valo kore shikhte hobe.
অনেক ভালো ভাবে বুঝলাম। ধন্যবাদ। আসলে ধন্যবাদ ও আপনার জন্য যথেষ্ট না৷ আসলে আপনার কাছে অনেক মানুষ ঋণী হয়ে গেল।
অনেক অনেক ধন্যবাদ সুমিত দাদা আপনি এত সুন্দর করে ব্যাখ্যা করে ক্লোজার বুঝিয়েছেন আশা করি এরপর থেকে আর কোনো সমস্যা হবে না।
You are a genius! What a clean and smart teaching technique! Big fan of you! Proud to get a mentor like you.
This is the longest video on internet covering closure Awesome
Ha ha. I believe you watched the whole video without skipping things. Then the story should be clear to you by now.
Learning programming mostly relies on understanding the concepts properly. And you make these concepts super easy to understand. Keep it up bro ❤️❤️❤️.
Javascript beginner series theke closuer dekhsilam pore ata dekhe aro onk vabe clear holo
Thanks ❤️❤️
I have been using Javascript for 1 year!!! But when I watch your video, my concept is becoming clearer and clearer!!! Your teaching process is so easy and understandable like Kyle Cook of web dev simplified channel!! Thanks for these efforts, bhaia!!Hopefully one day by your lesson I will start learning & using redux though it will be so tough for me😋😋😋
Thanks. And I am happy that you find my tutorials useful. Stay tuned!
My day does not go well without learning anything from your tutorial. It is so much fun to learn from you. Thank you. Please, keep continue this good work.
This video took me 2 hours! Finished it by taking notes!
Thank You!
Sera,dada! *_*
Some approx.. timestamps
11:58 Secure private variable or get private variable from the outsides of its scope
16:47 Js won't capture unused variable in closure scope
20:52 is global scope same as closure?
28:38 closure does not take the exact value of a variable rather it takes the reference of that variable. So, if the variable is changed then the variables value in closure is also changed
32:17 let,const instead of var - script scope
35:45 using closure to check the exicution time of a chunk of code.
41:58 for performance issue, we have to Maintain garbage collection of closure manually.
44:40 closure in asynchronous behaviour
(51:00 closure in fetch api)
55:07 important interview question about closure
1:07:20 summary
closure is a function that perserve outerscope variable and also outer scope after close over the lexical scope ..Nice explanation dada ...🥰🥰🥰🥰
আপনাকে নিয়ে অনেক কিছু লেখা যায় ভাই ,,,
কিন্তু আপনি আমার শিক্ষক জীবনের সেরা একজন মানুষ❤❤💝
এটুকুই আমার জন্য অনেক ভাই
এখনো আপনার ক্লাসেই করতেছি ভাই,,,
দোয়া রাখবেন ভাই,,💝 আপনার জন্য অনেক অনেক ভালোবাসা রইলো@@LearnwithSumit
MDN এর নতুন Doc.. অনুযায়ী
Every closure has three scopes:
Local Scope (Own scope)
Outer Functions Scope
Global Scope
Execution context এ creation phase & execution phase এইখানে যখন ভেরিয়েবলে অ্যাসাইন হইতাছে ভ্যালু এক্সিকিউট হবার পরে সেই রেজাল্ট
কনসোলে পাইতাছি, কিন্তু console.dir করে যেটা দেখতাছি এক্সিকিউট কমপ্লিট হবার পরে সামগ্রিক Scopes সেইটা রেফারেন্স করতেছে, এবং এইট শুধুমাত্র গ্লোবাল স্কোপের বেলায়, কিন্তু ইনার স্কোপে কিন্তু ক্রিয়েশন টাইমের ভ্যালুই ক্লোজারে দেইখাইতাছে।
var num1 = 2;
var num2 = 3;
var sum = function() {
var num3 = 4;
return function () {
num3 = 9;
return num1 + num3;
}
}
console.log(sum()())
console.dir(sum())
এই কোডটা রান করলে কিন্তু ক্লোজারে num3 = 9 না দেখিয়ে ৪ দেখাবে, কারন Execution Context এর execute phase এ আউটার ভ্যালু 4 ছিলো, বর্তমান ডক অনুযায়ী ব্যাখ্যা ভ্যালিডই আছে, ভুল কইলে প্লিজ......... আসলে নিজে নিজে এক্সপ্লোর না করলে এই জিনিস আয়াত্বে আসবে না, এইখানে এক্সিকিউশন কন্টেক্সট ক্লিয়ারলি বুঝতেই হবে, এমন একটা বুঝ লাগব যা দিয়া অলোয়েজ যে কোন কারন ডিফাইন করা যায় তখনই না কইতে পারি বুঝছি, তার আগে আসলে বুঝছি কইলে হব না
"Closure" বোরহানি খাওয়ার মত প্রথম বার খাওয়ার সময় ভালো লাগে না, কিন্তু বার বার খাওয়ার পর পুরো জগ একই খাওয়া যায়। এখন আমি পুরো "Closure" জগ টাই খেয়ে ফেলতে পারবো শুধু এই ভিডিও টা দেখে। দাদা আপনি এগিয়ে যান, খুব শ্রদ্ধা আর ভালোবাসা রইল।
😍😍
অনেক সুন্দর করে বুঝানোর জন্য ধন্যবাদ ভাইয়া........
অনেক ভালো লাগেছে, সুন্দর করে উদাহারন সহ Closure বুঝিয়েছেন।।
জেনে ভাল লাগল। ধন্যবাদ।
vaia last e setTimeout() diye practice ta awesome chilo,var/let,closure sob kichur sum up ek example diyei kore dilen,thank you
Always love your videos, I can't say how many times I watched this playlist! Whenever I forget or get confused about core concepts I just come here again & again !
I am really happy that my tutorials are helping you. Take love
ঘুম থেকে উঠেই এক ঘন্টা ১০ মিনিটের সুপার ডুপার ফুল্লি সাস্পেন্সে ভরা একটা থ্রিলার মুভি দেখলাম❤️❤️❤️
ভালোবাসি ভাই❤️❤️❤️
অসাধারণ এক্সপ্লেনেশন ভাই। অনেক অনেক ধন্যবাদ
One of the best video on closure.
function bankAccnt(params) {
var balance = params;
return balance;
}
var acc = bankAccnt(10000)
console.log(acc)
----evabeo toh access kora jay. Kono inner function chara. Ekhane ki kono closure ache ,dada?
আমার মনে হয় না ইউটিউবে ক্লোজার কেঊ এভাবে বুজিয়েছে। যেই দেখায় ফাংশন থেকে আরেকটা ফাংশন রিটার্ন করে দিলেই শেষ ক্লোজার খতম।
আপনাকে Infinite ভালোবাসা 🥰🥰
Best video among best videos. Asa kori aponi ei vabei English e video ta translate kore deben tahole jara other language speaking people tarao khub valo ekta content pabe aponar madhome. Anyway thanks a lot dada :)
This is simply the best 'closure' video I have ever seen!
vai chrome er dev tools a function dir korle scopes option tai dekhacche na. ki korbo?
vai apnar ato boro boro video gula ektuo birokto lage na ato masterpiece sobgula🔥. akhon ami C++ eo closure er concept pacchi ja atodin jantam e na.
I am successful vai. if you can get the closure concept in c++ that’s my achievement
function outer () {
let x = "hello";
const obj = {age: 25};
const arr = [1, 2, 3];
function inner () {
var a = 5;
console.log(x, obj, arr);
}
// console.dir(inner);
return inner;
}
const inner = outer(); // ending outer function scope
console.dir(inner);
এখানে console.dir(inner) ইনারের মধ্যে স্কোপের জায়গায় যে ক্লোজার ওপেন হয়েছে এই ক্লোজারের স্কোপ ইনার ফাংশন এর মধ্যে নাকি বাহিরে????
Thank you so much vaia .Actually i have lot of confusion on Closure but from your lecture now i can understand how it works
❤️
ভাইয়া, 1:03:28 এই সময় থেকে বুঝতে পারি নাই। "একই রকম সবগুল একসাথে দেখায়" বুঝলাম না। একটু ব্যাখ্যা করবেন। ধন্যবাদ।
Brother I have 2 confusion
টিউটোরিয়াল এর 1:04:12 সময়ে scope এর ভিতর তো closure keyword টাও দেখানোর কথা তাহলে শুধুমাত্র এইবার ই কেনো block { i : 2 } দেখাচ্ছে ?
1:00:10 এ আপনি বললেন যে ১ম iteration এর পর ২য় iteration এ নতুন একটা i create হয় সেটা কিভাবে বুঝলেন? প্রমান কিভাবে দেখব
Background Sound tar Jonno concentrate korte parchina..amr already headache shoro hoia gese..kindly background sound ta remove kore abr deoa jai kina akto vebe dekben.. Vaia thanks
amar ekta jinish mathai dhukchena bhaia, je result 3 keno aslo ? condition to match kore nai ?!
vai re vai sei hosse
Javascript er weird concept gula khub nicely describe kortesen
Thanks vai.
You are close to my heart, dada. Can I call myself a closure?😂
Lots of respect.
You are a rock brother .. You nailed it ! Thanks a lot , May Allah Bless you !
valo laglo video ta. thanks. bhaia design pattern er upor kisu video chai
Thanks for your comment. Though Design Pattern is a huge topic with lots of abstraction involved. Currently I am focusing on practical implementations. Will try to cover design pattern someday. Thanks again for suggestion.
@@LearnwithSumit thanks
Scope option not showing in my browser console. can you say dada what is the problem is this ???
In JavaScript, closures are the primary mechanism used to enable data privacy.
এই ভিডিও দেখার আগে Closure সম্পর্কে ধারনা ছিলো ০ % আর ভিডিও দেখার পরে মনে হচ্ছে ৬০-৭০% বুজলাম।
১০০% হয় নাই তার বড় কারন হচ্ছে যতদিন না এটা প্রাকটিকেলি ব্যবহার করবো ততক্ষন পর্যন্ত বুজা যাবে না।
ধন্যবাদ ভাই, Closure এর ভয় থেকে অন্তত মুক্তি পাওয়ার জন্য ❤ 13 Nov, 2023
❤️
Vai your content is so reached. Maybe if you avoid background music from the video then I'ts will be great.
This is an awesome tutorial about Closure. Thanks, Sumit vai
Thank you so much vaidya.The closure is done.Really great tutorial
great. now u should look at this video - ruclips.net/video/Wk0-6b1W_VQ/видео.html. everything would be crystal clear.
You are the best content creator
ভাই ,আমি আপনার অনেক বড় fan . ব্যাকগ্রাউন্ড এ music ছাড়া ভিডিও বানালে খুব ভালো হতো...নতুন turorial গুলা music ছাড়া বানালে আমাদের জন্য খুব ভালো হয়। কারণ ইসলামে music নিষিদ্ব। ..
You are doing great. Love💕 from India
Vaia apnr video gula onk valo lage.... Amra chai apni jeno all time amder emon valo video den
Thanks. Will try to upload more. Stay tuned!
Thank you so much bhaia. May you be blessed in every area in your life
timer function ta null kora carai amake timer is not a function dekhacce keno?
It is a gem Sumit bhai! ❤
Thank you
best JavaScript Tutor I have ever seen...amazing content.
Thanks. please stay tuned.
Rest API with express & mongoDB er ekta tutorial chai 😍. Take Love ❤️❤️❤️
Will try to cover that. Stay tuned!
this is a very confusing topics, and watched it completely, but I got the point
Vaiya Output dekher jonno pasher DevTools ta ki vabe pabo.
Google Chrome browser e web page er upor right click kore “Inspect element” click korle paben
প্রথমত যে কথা, সেটা হলো দাদা আপনার সরি শুনে নিজের কাছেই খারাপ লাগে। একজন এডুকেটর তার নিজের ওয়েতেই শেখাবে, সেখানে স্টুডেন্টকে এডুকেটরের ওয়েতেই বুঝতে হবে। এ রকম ওপেন প্লাটফর্ম এ তো কথাই নাই। আপনার মত এক একজন মানুষ, আর এত সুন্দর ভাবে ব্যাখ্যা করা ফ্রিতেই পাচ্ছি। সময়ের হিসেব না করে বুদ্ধিমানের মত শেখাটাই ভালো হবে। এখানে শিখতে এসে শুধু Closure ই না var, let কেও আরো নতুনভাবে বুঝতে পারছি। আপনি কষ্ট করে এত সুন্দর করে গুছিয়ে টপিকস গুলো আমাদের সামনে আনার জন্য ধন্যবাদ আপনাকে। নিজের ভাষায় এত প্রিমিয়াম, ক্লিয়ার কন্টেন্ট তাও ফ্রিতেই পাওয়া সত্যিই ভাগ্যের ব্যাপার। অনেক কিছু নতুন ভাবে ভিতর থেকে বুঝতে পেরেছি।
ভালবাসা ভাই।
ভাইয়া, এতদিনের ক্ষুদা আজকে মিটলো। শেষ পর্যন্ত জিনিসটা বুঝলাম। আহা.................................
sumit dada apni to busy manush but please express & mongoDB er at least ekta crash course tutorial chai 😍 ❤️❤️❤️
Will do that soon. Please stay tuned. And my name is "Sumit" not "Sumi" :-)
কেমন একটা অদ্ভুত আচরণ js এর !!!
(function () {
var num1 = 2;
var num2 = 3;
var sum = function () {
return num1 + num2;
};
console.log(sum());
console.dir(sum);
var num1 = 6;
var num2 = 7;
var sum1 = function () {
return num1 + num2;
};
console.log(sum1());
console.dir(sum1);
})();
এটা প্রথমটার
[[FunctionLocation]]: practice.js:17
[[Scopes]]: Scopes[2]
0: Closure {num1: 6, num2: 7}
1: Global {window: Window, self: Window, document: document, name: "", location: Location, …}
এটা দ্বিতীয় টার
[[FunctionLocation]]: practice.js:27
[[Scopes]]: Scopes[2]
0: Closure
num1: 6
num2: 7
1: Global {window: Window, self: Window, document: document, name: "", location: Location, …}
দুইবারই 6 এবং 7 ধরে রাখছে !!!!
Vai....you are 'Mohan' like 'Closure' 😁 ❤️
vaiya event bubble, deligate niye video diyen please
Some people are trying harder to make someone's life easier. best wishes sumit
Thanks a lot for understanding.
Wow smart and awesome teaching
Thank you sir😍😍😍
sir background music ta off korle valo hoto .
Best teacher! Understand very well.
thanks.
ভিডিওটি আবার দেখার চেষ্টা করলাম কিন্তু বাজনার জ্বালায় দেখতে পারলাম না
thanks sir ....local storage nea video chai
was eagerly waiting for it 😍😍 love your content bro ❤❤👌👌
Shahnewaz Tameem Thanks a lot. Happy to know that it helped you.
Thanks a lot dada for this type of content. ❤️
ata ki theme janaben pls.
Want frontend project after learning course 😍😍😍
Thank you so much for great tutorial 🥰
great work. keep it up with new js tutorials. u r the best js explainer in Bengali ever
Thanks a lot. Pray for me so that I can manage time to share some knowledge
You Are a great mentor box and I really like to you, tutorial as wel sound is good. Thank you so much Dada❤️❤️
Welcome. Please subscribe if you like
Closures are not that scary! 👏👏 Thank you. Happy Birthday Vai 🎉🎉🎉
ভাই সবই দারুন কিন্তু গানের সাউন্ড খুব বিরক্ত করছে
nothing to say..this video is enough for closure... no need see others video..
WOW💜.
Thank you so much Sir
You are a genius!
Vaia execution context nia video banan
How javascript work aita nia banan
Javascript kibabe kaz kore aita jante chai
JavaScript নিয়ে জানতে চাইলে এবং ধৈর্য্য থাকলে আমার এই ভিডিওটা সময় নিয়ে দেখতে পারেন। অনেক কিছুই জানতে পারবেন। অনেক আগে করেছিলাম যদিও - ruclips.net/video/KuhLGuNxF8U/видео.html
ভাই সব কিছু অতুলনীয় আপনি শুধু ভয়েস সাউন্ড টা একটু বাড়িয়ে দিয়েন সাউন্ড বাড়ানোর পর ও শুনতে একটু সমস্যা হয়
এটা অনেক আগের ভিডিও ভাই ।আমি।আন্তরিকভাবে দুখিত। বর্তমান সময়ের ভিডিওতে এই সমস্যা সমাধান করেছি।
@@LearnwithSumit ধন্যবাদ ভাইয়া ।।
amazing content, sumit bhaia !
very helpful dada....carry on to provide this kind of great video content.
Vai,onek sundor vujiechen.
For loop er matter ta vujlaam.
Thanks. Please subscribe to my channel and stay tuned.
This video is really good dada❤️❤️❤️❤️
how to use console of vscode?
bro what will be the next tutorial?? . i was eagerly waiting for this tutorial .. i have learnt a lot from this tutorial and from the previous tutorial .. and i want more from you.. i want a project using these kind of wirdo
More videos will come regarding different topics. Please stay tuned in this channel to get updates.
Advanced level tutorial
Super...
Awesome...
Thank you so much vaia
So clean explanation...
Viaa ami ekhon class 11 a pori future a cse nia porte chai Javascript intermidiate level er pari. Ai khetre Javascript kemon beneficial hobe.
Academic career e JavaScript oivabe sekhano hoyna. JavaScript holo web developement er jonno suitable language. Jodi future e web developer hote chao, tahole obossoi JavaScript khub valo kore shikhte hobe.
@@LearnwithSumit vaiaa google ki web developer hire kore?
@@shahjahanmia4319 Obossoi...korbena keno
akhono dekhi nai tobe obosshoi valo hobe !!
Thanks
অসাধারণ
wow wonderful video
31.00 minits er logic ta just like genious logic
nice video bhaiya
best js videos in the universe 💓
ha ha. ektu beshi hoye gelo na vai?
na vai..khati bangla te clear concept pawar zonno er theke best koi 😍
What a nice teacher he is !
keep consentation so hard because background music. please avoid next
So kind of you bhaiya. Thanks alot.
ধন্যবাদ দাদা