After completing several JS projects, this is my second time watching this from start to end and it is worth every minute. The first time got me through the 4-5 basic JS projects. This revisit validated the concepts I understand and this time I was ready to understand "closures and recursion". Slowly making my way through the JS Fundamentals Playlist, trust your mind map path on how to learn JS so that I get the basic programming concepts down. Thank you, my confidence and skills are slowly growing. I had decided to quit mid February but dusted myself off and getting back at it. As Always thank you Tapas. You are so thorough with the content but you have it sliced down to the essentials , I come to you to understand the things I struggle with and you help me every time. Coupled with practice, reading and building side projects.
Hey, all the best with JS... I wish you a great learning. The tip I can give you is: - Focus on concepts... Connect one concept to another to understand the bigger picture and practice. You will win over it. I have a video in the JavaScript playlist that explains how to learn JavaScript effectively. You can check that. Also, please let me know how you find this JavaScript Function Crash Course? Was it helpful? 😀
Thanks Mr. Tapas for your great work. Please sir based on your definition of function, you said is a bunch of instructions stored so as not to repeat a process. Let me use your example: Function PrintMe (){ Console.log (print) Return you got (print) Then my question is, if you are to repeat a task in programing instead of storing the instructions how would it look like?
Thank you! ❤️ For a single line console log instruction it may not make a lot of difference. But think about any computations or a bunch of lines of code instructions… those cases, instead of repeating, create function and use that instead. I hope it is clear now.
Your teaching style is amazing, and I really want to learn more from you. I'm not sure, but if you start a DSA course in JavaScript, it would be very helpful for us. I would be more than happy to learn from you
Hello sir, I have created a function below: function multiply(a , b){ return a * b ; } let ans = multiply(3,2); Now, instead of giving me the answer of 6, it is showing me 'undefined'. My question is, when assigning a function to a variable, do I have to create a variable inside the function to store the answer and then return that variable?
Hello, here you are not printing the result anywhere, so it is not printing the result. You can do console.log(ans) to print the result. Alternatively. You can log the result inside the function before returning. function mul(a, b){ const result = a*b; console.log(result); return result; }
@@tapasadhikary Each time I comment on your post you don't waste time offer help immediately like you knew me before, i'm so short of words on how to appreciate you, please grant me one wish 🙏, can i know you in person 🙏.
@@Techvideos-q7u Not sure, what do you mean by knowing in person 🙂. I am available on tapaScript discord.. you can always ping me there as I respond when get time... Also, we can chat on this Sunday LIVE(I will schedule that shortly)
After completing several JS projects, this is my second time watching this from start to end and it is worth every minute. The first time got me through the 4-5 basic JS projects. This revisit validated the concepts I understand and this time I was ready to understand "closures and recursion". Slowly making my way through the JS Fundamentals Playlist, trust your mind map path on how to learn JS so that I get the basic programming concepts down. Thank you, my confidence and skills are slowly growing. I had decided to quit mid February but dusted myself off and getting back at it. As Always thank you Tapas. You are so thorough with the content but you have it sliced down to the essentials , I come to you to understand the things I struggle with and you help me every time. Coupled with practice, reading and building side projects.
I’m extremely happy that my content helped you. I wish you all the best ❤️
Great tutorial. Love and respect from Bangladesh.
Thanks a lot 💛
All time best explanation on youtube about JavaScript Functions with closures
Thanks a lot 💛❤💛
Thank you sir. You are a great teacher
Thanks a lot. Glad you liked my teaching.
it's awesome crash course for beginners. I have cleared all concept in function. Now i will do practise more and read article regularly
Nice! Keep going 👍
thank you dada. love from Bangladesh@@tapasadhikary
Even though I am watching your videos for the first time, I have become a fan of your teaching strategies. Thanks a bunch for the amazing tutorial.
Thanks for this BIG shoutout. I’m glad to help 💛
excellent video Im really enjoying learning here!🧑🏽💻
Most welcome ✌️
I always enjoy your teaching❤ pls don't stop putting content ❤
No stopping ✌️. Btw, let me know how you liked this course 😀
Your video is extra ordinary bro...no way we could not understand if thoroughly listen the video
Thanks man! It means a lot 💛
I hope your health is good now. Thank you for this ❤
Yes, I am much better. Happy to publish this one.
This was needed. Thanks a lot for bringing this course ❤ much appreciated ❤
My pleasure and happy to help ❤️
Thank you for this good video.. Keep going on..
Glad you found it helpful 💛
Simply Great
Thank you 💛
Very clear explaination sir.Thank you for your hardwork.
Thanks a lot ❤️
Thank You Dear Vaia.
Welcome vai 💛
Thank you 🙏
😍😍🤩
thanks for making this video, Sir
Welcome 💛
Thanks a lot sir for clearing so many concepts about different concepts so easily.
Thanks Gungun 👍🙏
Thanks a lot Sir.
Welcome Girish
An awesome video, kudos to you 👐
Thanks vai, appreciate it ❤️
Will u upload more videos on javascript?
Of course I’ll do. I’m already making a video on JavaScript Objects.
Sir I am started my JavaScript journey today. Please one line of tip from you.✍️
Hey, all the best with JS... I wish you a great learning.
The tip I can give you is:
- Focus on concepts... Connect one concept to another to understand the bigger picture and practice. You will win over it.
I have a video in the JavaScript playlist that explains how to learn JavaScript effectively. You can check that. Also, please let me know how you find this JavaScript Function Crash Course? Was it helpful? 😀
As a beginner i have found this crash course very understandable 😊. Thank you.
Thanks dada❤
Welcome vai ❤️
thank you for the best course in javascript , the first time I can understand complex topics
That's great. I am thrilled to know it.
That was a fantastic explanation! Thank you so much for your help. I really appreciate your teaching style. 👍
Nice! Most welcome ❤️
Amazing introduction to functions in js. 💖
Thanks, mate. Glad you liked it
informative video, thanks
Thanks a lot.
Too good
Thanks a lot 💛
Do you have a video for Event Loop
Yep.. the link is there in the description of this video.
Here is the direct link: ruclips.net/video/pIjfzjsoVw4/видео.html
I learnt more and more fundamentals from you Tapash vai. I want full DOM course from you I know you will keep in mind. Thanks a lot vai. Great
Yeah, I need to make one
Thanks Mr. Tapas for your great work.
Please sir based on your definition of function, you said is a bunch of instructions stored so as not to repeat a process.
Let me use your example:
Function PrintMe (){
Console.log (print)
Return you got (print)
Then my question is, if you are to repeat a task in programing instead of storing the instructions how would it look like?
Thank you! ❤️
For a single line console log instruction it may not make a lot of difference. But think about any computations or a bunch of lines of code instructions… those cases, instead of repeating, create function and use that instead.
I hope it is clear now.
where is the real world example link? cant click
Your teaching style is amazing, and I really want to learn more from you. I'm not sure, but if you start a DSA course in JavaScript, it would be very helpful for us. I would be more than happy to learn from you
This is good
You are most welcome, Lisa. Thank you!
One line i want to say simply ur mind is a library man 🙏
Haha… thanks 😀
Hello sir, I have created a function below:
function multiply(a , b){
return a * b ;
}
let ans = multiply(3,2);
Now, instead of giving me the answer of 6, it is showing me 'undefined'. My question is, when assigning a function to a variable, do I have to create a variable inside the function to store the answer and then return that variable?
Hello, here you are not printing the result anywhere, so it is not printing the result. You can do console.log(ans) to print the result.
Alternatively. You can log the result inside the function before returning.
function mul(a, b){
const result = a*b;
console.log(result);
return result;
}
Chole Ashlam Video ta dekhte Bhaiya
Thank you ❤️
Hi Bro,Are from odisha
Nope WB but in Bangalore now.
Thank you once again Tapas ❤, please can i get to know the software you make use for your demonstration 🙏
You are most welcome.. coming to the software used.. the usual one.. one and only MS Power Point PPT 🙂
@@tapasadhikary Sir Tapaz, GOD bless you for me, you one of the most humble human i have seen in my lifetime ❤.
@@tapasadhikary Each time I comment on your post you don't waste time offer help immediately like you knew me before, i'm so short of words on how to appreciate you, please grant me one wish 🙏, can i know you in person 🙏.
I would be the most happy person on Earth if you grant me this one wish of mine 🙏
@@Techvideos-q7u Not sure, what do you mean by knowing in person 🙂. I am available on tapaScript discord.. you can always ping me there as I respond when get time... Also, we can chat on this Sunday LIVE(I will schedule that shortly)