Thanks a ton🙏 completed the course , your the GOAT of teaching and knowledge .Felt like your the first one to deserve for Gold medal if it is given in IT.
finally completed all of the videos of this series...awesome explanation sir thankyou...please upload more videos in this series, really waiting...more complex videos in your style of teaching thankyou!!
I watched your full JS playlist it's too good.Please upload advance concepts like callback function,call,apply,bind,promises,async,await all advance concepts in this playlist it will be helpful for all.Keep Rocking Bro ✌🏻
For advance must watch namaste javascript your all doubt clear and that's company level , also watch technical saluja and coders Gyan before watching namaste javascript
I watched your full JS playlist it's too good.Please upload advance concepts like callback function,call,apply,bind,promises,async,await all advance concepts in this playlist it will be helpful for all.Keep Rocking Bro
sir I am watched your all videos so help full for beginner , and I am get java language skills to watching you videos and thank you so much sir for for your all videos
I watched your full javascript tutorial please upload more videos with updated call apply bind and ooops concepts in javascript... Please upload react js for beginners... Waiting for ur videos ...
Thank you so much bro... I watched your all javascript videos... Its very helpful... Please make serious of data structures in javascript... Because of, your explanation is directly fetch to mind... That's why 😀
that was completely awesome course, but what about giving the user the input option, like for example int(input("enter your age : ")) in python, THANK YOU..
You have a great presentation and communikation skill . Thank you Telusko , can you do a video about class in javascript and how can we create a class , if my request is a blunder , pardon me..
please why don't you build a project combining all the parts you've taught us, so we can follow along and see how and in what conditions each part really matter
how about this function fact(n){ return (n==0) ? (1) : (n*fact(n-1)); } console.log(" factorial of entered value is " + fact(5)); Thank you alien for sharing your knowledge❤
@Telusko Dear Navin Is this Javascript tutorial completed or more vids going to be uploaded? How many more topics or vids left . pls giv an approx date of fcompleteion if possible . Please answer
IS THIS A LITTLE TOO MUCH? LOL function fun(n, arr){ if(n === 1){ arr.push(1); return arr; } arr.push(n); return fun(n-1, arr); }; let num = 5; let arr = []; let fact = fun(num, arr); let result = fact.reduce((a, b)=>{ return a * b; }); console.log(result) OR THIS PERHAPS, function f(n){ return n === 1 ? [1] : [n, ...f(n-1)]; }; let num = 5; let value = f(num); let result = value.reduce((a, b)=>{ return (a * b); }); console.log(result)
I watched your full JS playlist it's too good.Please upload advance concepts like callback function,call,apply,bind,promises,async,await all advance concepts in this playlist it will be helpful for all.Keep Rocking Bro
I watched your full JS playlist it's too good.Please upload advance concepts like callback function,call,apply,bind,promises,async,await all advance concepts in this playlist it will be helpful for all.Keep Rocking Bro
I watched your full JS playlist it's too good.Please upload advance concepts like callback function,call,apply,bind,promises,async,await all advance concepts in this playlist it will be helpful for all.Keep Rocking Bro
Thanks a ton🙏 completed the course , your the GOAT of teaching and knowledge .Felt like your the first one to deserve for Gold medal if it is given in IT.
I learned a lot of concepts, thank you Navin sir.
we need more of these videos, functions, async, promises etc. thanks a bunch your series are much easier to digest than those condensed videos.
I never lost focus while watching your videos, please keep it up, javascript has a huge number of users/learners, please make more videos on it.
finally completed all of the videos of this series...awesome explanation sir thankyou...please upload more videos in this series, really waiting...more complex videos in your style of teaching thankyou!!
I just completed all of the videos in this series. Thank you so much for this effort sir😍😍😍.please do more videos in this series.its a kind request🙏
Thank you sir, actually i'm following you since 2018 i think from your first video , your teaching technique still same and powerful.
Completed watching all the videos in 2 days time..good explanation sir..💯/💯👍
Thanks for the JS Series. Really helps to understand the basic concepts and the usages.
I watched your full videos of JS....
It's help me a lot...
Thank You...
I watched your full JS playlist it's too good.Please upload advance concepts like callback function,call,apply,bind,promises,async,await all advance concepts in this playlist it will be helpful for all.Keep Rocking Bro ✌🏻
For advance must watch namaste javascript your all doubt clear and that's company level , also watch technical saluja and coders Gyan before watching namaste javascript
yes all of these concepts are imp and needed
Awesome videos really helped me a lot.. we want more in this series ❤️
THANK YOU SO MUCH SIR I WATCHED THIS PLAYLIST FULLY THANKS A LOT
I watched your full JS playlist it's too good.Please upload advance concepts like callback function,call,apply,bind,promises,async,await all advance concepts in this playlist it will be helpful for all.Keep Rocking Bro
I learnt a lot of concepts, thanks Navin
Thank you for making videos.. Even begginers can understand easily by watching your videos..
sir I am watched your all videos so help full for beginner , and I am get java language skills to watching you videos and thank you so much sir for for your all videos
Thank you for the classes 😊
Please complete this series soon...more jobs are awaiting for ur students
yes please naveen anna...pls upload remaining chapters soon
simple and intuitive. Thanks
finally i get to know recursion. thank you
Thank you! I learned a lot in watching your videos
Nice to see that everyone has the same approach to solve this problem :)
I don’t think there is some other solution..as ! Is not a valid character
Thank you for the JS playlist, helped a lot.
It would be more helpful if you could teach advanced concepts.
No one can explain like you
awesome series..completed it..!!
Good explanation... I liked the idea of subscription...
I watched your full javascript tutorial please upload more videos with updated call apply bind and ooops concepts in javascript...
Please upload react js for beginners...
Waiting for ur videos ...
perfect playlist
please can you teach the advanced concepts like callbacks. promises and the rest.
Thank you sir for teaching JS
Thank you so much sir, your videos are really helpful 😊 Waiting for other videos in JS.
Watching after a year 😀 ur videos. Happy to see u sir
Really awesome series 🙂 bro. Please continue this playlist...😐
I am a big fan of you sir . Your amazing I want to learn programming but I don't have any idea of how to start the learning .
really awesome series sir, ur aliens are waiting for more in the series
More to come!
sir we need more advance js videos
really this videos are usefull
Thank you so much dear sir 🇱🇰❤️
Sir can you teach reactjs sir plz
sir we aliens want more in this series like higher order functions, OOPs, DOM manipulation, ES5/ES6 new features etc plz
Thank you so much bro... I watched your all javascript videos... Its very helpful...
Please make serious of data structures in javascript... Because of, your explanation is directly fetch to mind... That's why 😀
Bro is this tutorial completed are more vids going to come? You know anythng abt it?
@@Shiva_Codes yeah me too has the same doubt...
@@rekhanatarajan6149 @telusko @navinreddy should provide an update regarding duration. Anyway nice to meet you
Does JS has input method to accept data from user by itself?
that was completely awesome course, but what about giving the user the input option, like for example int(input("enter your age : ")) in python, THANK YOU..
just completed... i don't know if this is suffice to say that i learnt a programming language but i did complete it successfully
You have a great presentation and communikation skill . Thank you Telusko , can you do a video about class in javascript and how can we create a class , if my request is a blunder , pardon me..
please why don't you build a project combining all the parts you've taught us, so we can follow along and see how and in what conditions each part really matter
Just one query is there any class for taking user input just like scanner class in java?
best teacher
Please complete the series ASAP!
how about this
function fact(n){
return (n==0) ? (1) : (n*fact(n-1));
}
console.log(" factorial of entered value is " + fact(5));
Thank you alien for sharing your knowledge❤
what we have to go for next, any suggestions please
@Telusko Dear Navin Is this Javascript tutorial completed or more vids going to be uploaded? How many more topics or vids left . pls giv an approx date of fcompleteion if possible . Please answer
there is an another playlist in this channel check that too
simple and clear
Thank you Bro. Could you make a video on Memoization ?
IS THIS A LITTLE TOO MUCH? LOL
function fun(n, arr){
if(n === 1){
arr.push(1);
return arr;
}
arr.push(n);
return fun(n-1, arr);
};
let num = 5;
let arr = [];
let fact = fun(num, arr);
let result = fact.reduce((a, b)=>{
return a * b;
});
console.log(result)
OR THIS PERHAPS,
function f(n){
return n === 1 ? [1] : [n, ...f(n-1)];
};
let num = 5;
let value = f(num);
let result = value.reduce((a, b)=>{
return (a * b);
});
console.log(result)
Thank you sir
Hello Sir,
Waiting for JavaScript videos after factorial using recursion, which was uploaded on 8th Nov. 2021. When will be this course get completed.
completed full series
great sir
Sir what if we directly write the statement as " return fact(n)"
Sir requesting to make a video on "Business Intelligence (BI) "
Sir please update the latest topics of js.A group of members are waiting eagerly ✨
is there more? i wanna start this course
Please upload more videos of javascript?
Thanks!
thanks bro
thanks sir
sir please explain object oriented programming concept in JS
Please make a tutorial in react also
Waiting for continuation anna
will resume soon
@@Telusko 😍🙏
I think it is my dumbness but I completed the full course but I don't know what to do next. can anybody help me out here?
Thanks.
Why haven't you completed this series ?
Complete full course it is held ur students
Please make DSA videos using JavaScript. There are no videos of DSA in JS.
Your way of teaching is awesome , it is simple and easy to understand.
Why you stopped upload js series
is this the end of this series?
Not a continous course Will have to follow someones channel 💯
no need for the else since you already early return of 1
I never use factorial in real life. It is a very remote chance.
Great
else we can do this
function fact(n){
if (n==0){
return 1;
}
else {
return n*fact(n-1);
}
}
console.log("Your factorial is "+fact(5));
Real life application please.
benny dayal looks like you
🙏👍👍
maths
Hello
You are THE best teacher I have seen in my Life. AWESOME❤🩹
I watched your full JS playlist it's too good.Please upload advance concepts like callback function,call,apply,bind,promises,async,await all advance concepts in this playlist it will be helpful for all.Keep Rocking Bro
I watched your full JS playlist it's too good.Please upload advance concepts like callback function,call,apply,bind,promises,async,await all advance concepts in this playlist it will be helpful for all.Keep Rocking Bro
I watched your full JS playlist it's too good.Please upload advance concepts like callback function,call,apply,bind,promises,async,await all advance concepts in this playlist it will be helpful for all.Keep Rocking Bro