How was this video? Let me know in the comments below, I read each and every comment! ❤️ Next Video: Callback Functions in Js & Event Listeners 🔥 - th-cam.com/video/btj35dh3_U8/w-d-xo.html
LOVED THE SERIES, DONT KNOW WHY ONLY 7K VIEWS. SHOUTOUT TO ALL JS ASPIRANTS, DONT WASTE TIME. COME HERE FIRST. YOU WILL HAVE BETTER UNDERSTANDING ANYWHERE ELSE AFTER THIS.
Things learned: 1. What is Function Statement ? A. A normal function that we create using Naming convention. & By this we can do the Hoisting. For Ex - function xyz(){ console.log("Function Statement"); } 2. What is Function Expression ? A. When we assign a function into a variable that is Function Expression. & We can not do Hoisting by this becz it acts like variable. For Ex - var a = function(){ console.log("Function Expression"); } 3. What is Anonymous Function ? A. A Function without the name is known as Anonymous Function. & It is used in a place where function are treated as value. For Ex - function(){ } 4. What is Named Function Expression ? A. A function with a name is known as Named Function Expression. For Ex - var a = function xyx(){ console.log("Names Function Expression"); } 5. Difference b/w Parameters and Arguments ? A. When we creating a function & put some variabels in this ( ) that is our Parameters. For Ex - function ab( param1, param2 ){ console.log(" } & When we call this function & pass a variabel in this ( ) that is our Arguments For Ex - ab( 4, 5 ); 6. What is First Class Function Or First class citizens? A. The Ability of use function as value, * Can be passed as an Argument, * Can be executed inside a closured function & * Can be taken as return form. For Ex - var b = function(param){ return function xyz(){ console.log(" F C F "); } } 7. Function are heart of JS. They are called first class citizens or first class functions because they have the ability to be stored in the variables, passed as parameters and arguments. They can also be returned in the function.
"When we assign a function into a variable that is Function Expression. & We can not do Hoisting by this becz it acts like variable." Cannot do hoisting is wrong here. Variable is hoisted. It means It cannot execute as function until it is defined as function.
Stmt vs expression. Expr can involves operand and operations. And expression can be assigned a value or executed as a value stmt cause side effect. Fn stmt is same a declaration without assigning it to a var eg. Function a Expr- var a = fn Anonymous without name iife or assignment First class citizens Named fn expr When fn with a name is assigned to a variable also this name is local scoped it can be used for recursion but not outside Arrow fn you know context is same parent
akshay bhaiya confused in interview. My ans would be at that point: Every function is beautiful, either it is function expression or it is function statement. 😂😂 love you bhaiya❤️❤️
The interview startup's name rhymes with "Tomato" For Revision Function statement / Function Declaration : the function is normally defined and can be used later on Function expression : the function is first created and assigned to a variable so that it can be called by its variable name and unless it is defined, it cannot be executed otherwise it throws out "Uncaught TypeError" Anonymous function : function where there is no need to define name for the function, it just can be assigned to variable Named function : Normal function with its name assigned to a variable !!In this case you cannot call function by its name in outer scope!! (Scope Chain) first class Functions / first class citizens : 1) used as values 2) can be passed as argument 3) can be executed inside a closured function 4) can be taken as return
This is the first time I binged watched a course and It is really exciting. Feels like you are revealing the story of JavaScript. Eagerly waiting for the next episode
I love how akshay didn't do so well at the interview. but he kept pushing forward. he went home and learned everything he needs to know. Now he's so knowledgeable that he's able to teach thousands of people how to also become programmers... #sucessStory
Nobody could have explained it better. Just a suggestion: Please upload frequently so that more topics can be covered soon. To be honest, we always wait for your new and exciting videos.
How, HOW did you manage to in one series nail so many (important) aspects & make them so clear; This is much of the stuff that's "hidden" in the "Advanced" section of the MDN documentation. awesome!
I've been watching these videos for last 3 days and these are simply awesome and better than many paid courses where the method of teaching is monotonous. These are simply awesome!
I had encounter once "First class citizen" in a js book , but i get to know the real meaning of it after watching this video. Thanks #Akshay for explaining this in so simple terms
when you said functions are so beautiful so beautiful at time 14:15 sec..i remember one line...functions are so beautiful ,so elegent just looking like a woow. 😃thanks man for this amazing series
This is the only series that I watch without any skip, without any second thought of learning from somewhere else......because of the way u teach sir.......it builds a person's trust in you that yes your videos are enough to know everything in Javascript.......thank you so much for teaching and please never stop sharing your knowledge with us.
I have forcefullly stopped here from bingewatching the playlist...along with maintaining proper notes I havent binge watched an educational content like this..... kuch to jadu hai isme..... very crystal clear explanation.
Kudos to your abilities to explain things so clearly! I am addicted and learning a lot! Plus your extra entertainment factor keeps your viewers engaged☺️
wow amazing i have seen nobody teaches these basic things but you are totally different from them you are teaching a topic from scratch thank you so much sir😍
sir u r the great watched ur video of interview on javascript that was so much funny u r the man who help us how to learn sth that everyone should be able to survive in the market,,,,ur ways of teaching is totally different from all other youtuber ,,u r just unique..............
This kind of content and explaination are often found in the paid courses. You are doing a fantastic job in explaining such topics and helping fellow programmers 👍👍
I have been learning JS for over two years and there were so many basic concepts that didn't make sense to me despite watching hundreds of videos. Man the way you explain the concepts and what's actually happening "behind the screen" makes so much sense. You are truly a gem.
I've completed my master's in mechanical enginnering, and after that, I planned to switch my career in the IT industry. Yesterday, I cracked the first round of interviews for the position of front-end developer. All the questions on JS were from your videos, and I can bet that the interviewer has also watched your Namaste Javascript series.
literally before starting the video itself am searching where is the like button thats how I am attached to your videos thanks for this whole series and i bought Namaste React series as well you impressed most of the frontend guys love you brother 😍❤
I'm watching this channel from Iran Much appreciation Akshay You are one of best teachers in JS for sure I loved js before but after knowing your channel i knew why i love js so much😍🙏🏽🙏🏽🙏🏽❤
you saved my time to get this structured overview of function concept in js in one vedio within 22minutes that i had been postponing for days . An heart to you♥️
One more advantage of anonymous function - can be used as IIFE(Immediately Invoked Function Expression) or Self Executing Functions. Ex - (function (){ console.log("This is an Anonymous function"); })();
I am watching this video series from last 2 days and it's mind blowing I must say! The way you have taught in whole series is better than any paid course and interesting.
Hi Akshay, I am a software engineer and I'm a big fan of javascript. I really like the way you explain. Your explaining skills are amazing. I really love your videos. Hats off to you brother!
Dude if I had your address... i would have definitely reached out to you because I have become a fan of yours for being such a professor who would not have been thought by the inventors of Javascript.... Thank you soo... sooo.. much .... I know money does give happiness but not satisfaction .... I believe you are satisfied by making many of us understanding javascript the way it is .... Hands off to you man... Hands off....
Bhaiya ji you are fire I'm trying to understand what is function expression and declartion from articles, some of examples but ghnta kuch smj me aaya and now I random search on youtube and find you without a single minute blink my eyes and watch your video in single shot and got my answer what exactly function are thank you so much 🙏🙏🙏🙏🙏🙏🙏🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥
If you ever create a paid course on anything revolving around Javascript like Node or React, I'll definitely buy it. There is sooooooooo much to learn from you.
I feel helpless if I don't find any specific topic in your series. I am addicted to this series.. Thanks Akshay.. Plsssssss post a video separately on arrow functions and how it works behind the scene. pls pls plsss...
Thanks for revealing the underhood of javascript .. as u said i used to work on these all but didn't knowing the things which you explained! Thanks for this life saving tutorial🙏❤️
Akshay sir you made me fall in love with learning, which i hated till now even after graduating . Thanks a bunch sir, your method of teaching is next class and soo understandable as well as exciting. I got your channel referred from one of your friends and i am glad that he did.
This is better revenge story than "thukra ke mera pyar". 😂 On a serious note, people may feel little guilty for watching such quality videos for free. Huge Respect for you. 🙏🙏🙏
Closure: are function with its lexical environment. Promise: eventually completion of asynchronous task Hoisting: variables are allocated memory and initialise as undefined on top of the program
First video of yours, I watched on TH-cam was "async vs defer attributes in Javascript" almost 1.5 year back. I watched it so many times, almost before every interview and I commented first time on TH-cam because that explanation compelled me to write something in comment and I wrote "I usually don't comment on YT but you compelled me to do so" and I got a reply from Akshay sir/Akshay bhai/Ustaad ... from that day only, I am addicted to write these long comments and I usually got reply from Akshay bhai. Thank you so much. We (the student of yours) will always remember you. You will be remembered for you great work forever. Love
Thank you for such a beautiful comment, it means a lot. So happy to know that you're watching videos since async and defer video. We have come a long way together. Thank you for growing along with me during this beautiful journey of TH-cam. ❤️
I cant describe your teaching in simple words, watching one time make me strong in that topic there no need for watching second time to understand it more strong, and teaching is art and you mastered it that, teaching from how it works is the greatest thing, teaching this premium content for free is a great humanity and a good thought, All the best Brother❤❤❤❤❤
Thankyou akshay Namaste JS is helping alot during my interviews, efforts taken by you to teach us each and every concept is remarkable, Thankyou once again
First Class Functions -> The ability to to use functions as values and which can be passed as arguments to another function, and also can be returned from functions. This thing can be answered in sleep now! Well explained Akshay 😃
Huge thanks for this video. I was really a person who used to get confused when it comes to wordings used in books and blogs but now i feel like most of the confusion should be gone. Appreciate you man.❤️
0. Function statement is same as function declaration. 1. Named function expression vs anonymous function expression. 2. Higher Order functions / Functions are first class citizens 3. Parameters vs arguments in functions
The knowledge that you are imparting through your JS series. It's so hard to believe that at one point of time you got nervous with JS interview questions.
I'll remembere this for lifetime - first class functions have ability to use function as values to pass it to another function or to return it from a function.
You are the type of guy I can sit and have long conversations with, without getting bored. I like learning new stuff and going to my workplace and tell others about it, unfortunately "That's so cool" isn't the reaction that you get from most people because knowledge doesn't make people go "That's so cool" usually. But it does to me and I assume you'd react the same way too XD I have a workplace senior I hang around with for most of the free time coz we both fall in this category. Thanks for all the videos. I must admit tho I'm jealous coz I like explaining stuff with same enthusiasm as you but ... nobody would listen to me and then it just feels like it doesn't matter that I know it :/
How was this video? Let me know in the comments below, I read each and every comment! ❤️
Next Video: Callback Functions in Js & Event Listeners 🔥 - th-cam.com/video/btj35dh3_U8/w-d-xo.html
LOVED THE SERIES, DONT KNOW WHY ONLY 7K VIEWS. SHOUTOUT TO ALL JS ASPIRANTS, DONT WASTE TIME. COME HERE FIRST. YOU WILL HAVE BETTER UNDERSTANDING ANYWHERE ELSE AFTER THIS.
it was one of the best videos and heavy one in this series really .
Great video Akshay
Sir we request you to make one long video like this about ES6 ,that covers everything about ES6,,,,,plzz
Please make video on behaviour of this keyword in javascript
Things learned:
1. What is Function Statement ?
A. A normal function that we create using Naming convention. & By this we can do the Hoisting.
For Ex - function xyz(){
console.log("Function Statement");
}
2. What is Function Expression ?
A. When we assign a function into a variable that is Function Expression. & We can not do Hoisting by this becz it acts like variable.
For Ex - var a = function(){
console.log("Function Expression");
}
3. What is Anonymous Function ?
A. A Function without the name is known as Anonymous Function. & It is used in a place where function are treated as value.
For Ex - function(){
}
4. What is Named Function Expression ?
A. A function with a name is known as Named Function Expression.
For Ex - var a = function xyx(){
console.log("Names Function Expression");
}
5. Difference b/w Parameters and Arguments ?
A. When we creating a function & put some variabels in this ( ) that is our Parameters.
For Ex - function ab( param1, param2 ){
console.log("
}
& When we call this function & pass a variabel in this ( ) that is our Arguments
For Ex - ab( 4, 5 );
6. What is First Class Function Or First class citizens?
A. The Ability of use function as value,
* Can be passed as an Argument,
* Can be executed inside a closured function &
* Can be taken as return form.
For Ex - var b = function(param){
return function xyz(){
console.log(" F C F ");
}
}
7. Function are heart of JS. They are called first class citizens or first class functions because they have the ability to be stored in the variables, passed as parameters and arguments. They can also be returned in the function.
"When we assign a function into a variable that is Function Expression. & We can not do Hoisting by this becz it acts like variable."
Cannot do hoisting is wrong here. Variable is hoisted. It means It cannot execute as function until it is defined as function.
@@maneesharandeniya Oh Thankyou , I will correct it
Thanks😍
thanx man.
Stmt vs expression. Expr can involves operand and operations. And expression can be assigned a value or executed as a value stmt cause side effect. Fn stmt is same a declaration without assigning it to a var eg. Function a
Expr- var a = fn
Anonymous without name iife or assignment
First class citizens
Named fn expr
When fn with a name is assigned to a variable also this name is local scoped it can be used for recursion but not outside
Arrow fn you know context is same parent
akshay bhaiya confused in interview.
My ans would be at that point:
Every function is beautiful, either it is function expression or it is function statement. 😂😂
love you bhaiya❤️❤️
The interview startup's name rhymes with "Tomato"
For Revision
Function statement / Function Declaration : the function is normally defined and can be used later on
Function expression : the function is first created and assigned to a variable so that it can be called by its variable name and unless it is defined, it cannot be executed otherwise it throws out "Uncaught TypeError"
Anonymous function : function where there is no need to define name for the function, it just can be assigned to variable
Named function : Normal function with its name assigned to a variable !!In this case you cannot call function by its name in outer scope!! (Scope Chain)
first class Functions / first class citizens :
1) used as values
2) can be passed as argument
3) can be executed inside a closured function
4) can be taken as return
❤️
interviewer is may be arnav gupta
I'm addicted to this series! Watching even in office hours, after office hours, all the time.
This is the first time I binged watched a course and It is really exciting.
Feels like you are revealing the story of JavaScript.
Eagerly waiting for the next episode
❤️
@@akshaymarch7 Please make video on behaviour of this keyword in javascript
Really man!! Can't stop watching from the last 3 hours!!!
fr fr
What did I learn from this video?
1. Functions are very beautiful in Javascript.
2. Functions are heart of javascript.
3. He Loves functions.
Words cannot express how much I love this series.
I love how akshay didn't do so well at the interview. but he kept pushing forward. he went home and learned everything he needs to know. Now he's so knowledgeable that he's able to teach thousands of people how to also become programmers... #sucessStory
Again.... And again....
I can't stop saying that it is the most beautiful JS course 🤗🤗
Your greatness is accepting your failures and learning from them. If that interviewer was watching this video, she must feel proud of you.
Arguments are passed to function
&
Parameters are received in/by function
Nobody could have explained it better. Just a suggestion: Please upload frequently so that more topics can be covered soon. To be honest, we always wait for your new and exciting videos.
How, HOW did you manage to in one series nail so many (important) aspects & make them so clear; This is much of the stuff that's "hidden" in the "Advanced" section of the MDN documentation.
awesome!
I've been watching these videos for last 3 days and these are simply awesome and better than many paid courses where the method of teaching is monotonous. These are simply awesome!
I had encounter once "First class citizen" in a js book , but i get to know the real meaning of it after watching this video. Thanks #Akshay for explaining this in so simple terms
when you said functions are so beautiful so beautiful at time 14:15 sec..i remember one line...functions are so beautiful ,so elegent just looking like a woow. 😃thanks man for this amazing series
Same here Lol
Namaste Akshay...Thank you so much...I work for 3 years with JS and after watching your tutorial I understand what is JS and how work
Many were said the JavaScript is beautiful but they didn't project as beautiful. But if you said it is beautiful you make it beautiful.... JS Guru.
Create a video on "this " in JavaScript. It is the most confusing thing in it.
Love your way of explanation.
This is the only series that I watch without any skip, without any second thought of learning from somewhere else......because of the way u teach sir.......it builds a person's trust in you that yes your videos are enough to know everything in Javascript.......thank you so much for teaching and please never stop sharing your knowledge with us.
I have forcefullly stopped here from bingewatching the playlist...along with maintaining proper notes
I havent binge watched an educational content like this.....
kuch to jadu hai isme.....
very crystal clear explanation.
Kudos to your abilities to explain things so clearly! I am addicted and learning a lot! Plus your extra entertainment factor keeps your viewers engaged☺️
I'm paid money to the same Course which is free on TH-cam and your explanation and love and passion towards teaching is great
wow amazing i have seen nobody teaches these basic things but you are totally different from them you are teaching a topic from scratch thank you so much sir😍
In Simple term - Function are so beautyful so elegant just looking like a wow🌸👌
sir u r the great watched ur video of interview on javascript that was so much funny u r the man who help us how to learn sth that everyone should be able to survive in the market,,,,ur ways of teaching is totally different from all other youtuber ,,u r just unique..............
Please complete this series as early as you can it's amazing and there is lot of thing left to cover...
slowly slowly... YOUR CONTENT IS FABULOUS AND MAKE ME FALL IN LOVE WITH JAVASCRIPT NOW
This kind of content and explaination are often found in the paid courses. You are doing a fantastic job in explaining such topics and helping fellow programmers 👍👍
all doubt about functions and everything about function explanation in one video, you're amazing sir thanks ,we are learning Js now......
The Efforts he makes in all this content is I haven't seen anywhere guys press like button we should also give back.
Functions are very beautiful in JavaScript. Its heart of JavaScript
man i completed watch all your javascript videos like as "mirjapur" web series
U r not alone
I have been learning JS for over two years and there were so many basic concepts that didn't make sense to me despite watching hundreds of videos. Man the way you explain the concepts and what's actually happening "behind the screen" makes so much sense. You are truly a gem.
I've completed my master's in mechanical enginnering, and after that, I planned to switch my career in the IT industry.
Yesterday, I cracked the first round of interviews for the position of front-end developer.
All the questions on JS were from your videos, and I can bet that the interviewer has also watched your Namaste Javascript series.
haha bhai i m also mechanical engineer doing my masters while learning coding in sha allah will get ready for interviews by next 2 or 3 months
literally before starting the video itself am searching where is the like button thats how I am attached to your videos thanks for this whole series and i bought Namaste React series as well you impressed most of the frontend guys love you brother 😍❤
I'm watching this channel from Iran
Much appreciation Akshay
You are one of best teachers in JS for sure
I loved js before but after knowing your channel i knew why i love js so much😍🙏🏽🙏🏽🙏🏽❤
you saved my time to get this structured overview of function concept in js in one vedio within 22minutes that i had been postponing for days . An heart to you♥️
JS functions are the next contenders for Miss Universe
❤️
They are quite beautiful tbh
🤣🤣
🤣
😄😄
One more advantage of anonymous function - can be used as IIFE(Immediately Invoked Function Expression) or Self Executing Functions. Ex - (function (){
console.log("This is an Anonymous function");
})();
function is heart of javascript and javascript is heart of akshay bhiaya, no one can teach js better than him
I am watching this video series from last 2 days and it's mind blowing I must say! The way you have taught in whole series is better than any paid course and interesting.
@Akshay Saini, you are putting hard effort to make us understand on JS. This is something unique.
Hi Akshay,
I am a software engineer and I'm a big fan of javascript. I really like the way you explain. Your explaining skills are amazing. I really love your videos.
Hats off to you brother!
This is the first time i've binged watch the whole course, and really getting interested more and more
Bhai, you are putting very high amount of hours into channel for us, thanks a lot for this.....
Slowly slowly..slowly slowly..we fall in love with js ❤️❤️❤️
these videos never fails to add dozens of values to my prior JS knowledge!
Dude if I had your address... i would have definitely reached out to you because I have become a fan of yours for being such a professor who would not have been thought by the inventors of Javascript.... Thank you soo... sooo.. much .... I know money does give happiness but not satisfaction .... I believe you are satisfied by making many of us understanding javascript the way it is .... Hands off to you man... Hands off....
basics are always beautiful which is why we all love this series. we get solution if we go back to basics
When its 2am and you cant sleep no worriy Akshay is here to give you a good company
Bhaiya ji you are fire I'm trying to understand what is function expression and declartion from articles, some of examples but ghnta kuch smj me aaya and now I random search on youtube and find you without a single minute blink my eyes and watch your video in single shot and got my answer what exactly function are thank you so much 🙏🙏🙏🙏🙏🙏🙏🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥
Cleared the concept very well, this series has something for all the people from freshers to college students to experience people.
If you ever create a paid course on anything revolving around Javascript like Node or React, I'll definitely buy it. There is sooooooooo much to learn from you.
I feel helpless if I don't find any specific topic in your series. I am addicted to this series.. Thanks Akshay.. Plsssssss post a video separately on arrow functions and how it works behind the scene. pls pls plsss...
Thanks for revealing the underhood of javascript .. as u said i used to work on these all but didn't knowing the things which you explained! Thanks for this life saving tutorial🙏❤️
Once in a time i addicted to triller web series. Now your videos on Java script🔥. I loved the way explain the concepts❤️
Akshay sir you made me fall in love with learning, which i hated till now even after graduating . Thanks a bunch sir, your method of teaching is next class and soo understandable as well as exciting. I got your channel referred from one of your friends and i am glad that he did.
i was exactly looking for this details.....since so much confusion was there with too many function variations. thank u so much
Literally I fell in love with Javascript because of you bro🙂Thank you so much for sharing this knowledge 🙂
The way you have explained, now i am also able to understand why function is also first class citizen in python
This is better revenge story than "thukra ke mera pyar". 😂
On a serious note, people may feel little guilty for watching such quality videos for free. Huge Respect for you. 🙏🙏🙏
Thank you so much for your comment, means a lot! ❤️
@@akshaymarch7 pls bhaiya reply how much knowledge of js req for for frontend
Do I need to learn like programming or should have basic knowledge
Closure: are function with its lexical environment.
Promise: eventually completion of asynchronous task
Hoisting: variables are allocated memory and initialise as undefined on top of the program
I dont know why i feel so safe studying from ur videos.......the senior we all want I guess.
The song edited at last part is so entertaining
Namaste Js series is a gem, Waiting for new videos in this series
First video of yours, I watched on TH-cam was "async vs defer attributes in Javascript" almost 1.5 year back. I watched it so many times, almost before every interview and I commented first time on TH-cam because that explanation compelled me to write something in comment and I wrote "I usually don't comment on YT but you compelled me to do so" and I got a reply from Akshay sir/Akshay bhai/Ustaad ...
from that day only, I am addicted to write these long comments and I usually got reply from Akshay bhai. Thank you so much. We (the student of yours) will always remember you.
You will be remembered for you great work forever. Love
Love you, brother! ❤️
Thank you for such a beautiful comment, it means a lot. So happy to know that you're watching videos since async and defer video. We have come a long way together. Thank you for growing along with me during this beautiful journey of TH-cam. ❤️
FUNCTIONS ARE VERY BEAUTIFUL IN JAVASCRIPT 😍😍
I cant describe your teaching in simple words, watching one time make me strong in that topic there no need for watching second time to understand it more strong, and teaching is art and you mastered it that, teaching from how it works is the greatest thing, teaching this premium content for free is a great humanity and a good thought, All the best Brother❤❤❤❤❤
Thankyou akshay Namaste JS is helping alot during my interviews, efforts taken by you to teach us each and every concept is remarkable, Thankyou once again
Will you please cover some DOM concepts in your Next videos that will be really helpful. Thank you for all your efforts to teach us.♥️♥️
you're the greatest teacher ever
First Class Functions -> The ability to to use functions as values and which can be passed as arguments to another function, and also can be returned from functions.
This thing can be answered in sleep now!
Well explained Akshay 😃
The excitement on your face when you talk about function ❤
Huge thanks for this video. I was really a person who used to get confused when it comes to wordings used in books and blogs but now i feel like most of the confusion should be gone. Appreciate you man.❤️
I was using the statements, expression, parameters, arguments, since years but wasn't sure about the jargons. Thank you.
0. Function statement is same as function declaration.
1. Named function expression vs anonymous function expression.
2. Higher Order functions / Functions are first class citizens
3. Parameters vs arguments in functions
this series is so good i wanna complete it in one sitting 😭
Function are heart of JS,they are so pretty and beautiful. Major learning
wow wow wow. all I needed to know in functions, you just made learning JavaScript exciting.
Namaste Javascript is one of the best thing that has started in 2020 :D
Or the only good thing that happened this year 😂
You literatally deserve more than one thumsUp dud❤️
🙏🙏 sir really aap great ho
Mera graduation ho gya IT se muje ab. Clear hua ye ❤️🙏🙏🙏
Came across this series a little late. But completed all 15 videos in 2 days along with practice. I'm addicted to this :P Thank you very much bro..
The knowledge that you are imparting through your JS series. It's so hard to believe that at one point of time you got nervous with JS interview questions.
Slowly Slowly lol
Epic end of this beautiful video
Hahaha, glad you noticed. 😂
u made me fall in love with JS ....literally❤
Thank you sir for providing best explain about javascript functions.
I'll remembere this for lifetime - first class functions have ability to use function as values to pass it to another function or to return it from a function.
Thanks a lot Akshay sir. Without these videos, I wonder where I would learn these concepts so clearly.
Thank you Sir you improved my both skills javascript and English.
you are a gifted teacher. Thank you!
Ending music + your smile ==== wow moment
Right now the interviewer thought, Owwhh I lost the diamond in search of gold.
Love from Bangladesh
Love from India 🇮🇳
tried javascript for the very first time, glad i saw this video, bruh well explained !
Learning a LOT slowly slowly, slowly, slowly, slowly slowly 😋
Hats off to you !! you just made learning javaScript so much simpler.👏
You are the type of guy I can sit and have long conversations with, without getting bored.
I like learning new stuff and going to my workplace and tell others about it, unfortunately "That's so cool" isn't the reaction that you get from most people because knowledge doesn't make people go "That's so cool" usually. But it does to me and I assume you'd react the same way too XD I have a workplace senior I hang around with for most of the free time coz we both fall in this category.
Thanks for all the videos.
I must admit tho I'm jealous coz I like explaining stuff with same enthusiasm as you but ... nobody would listen to me and then it just feels like it doesn't matter that I know it :/
You are reaching your 21 day goal very well
I'm trying hard!
learning slowly, slowlyyyyy lol thanks!!!!