I can bet that no courses can be better then this even that is paid. I have purchased almost 2-3 courses from Udemy but i couldn't find anyone better then this. A huge thanks to Mr Naveen Reddy Sir for providing these awesome courses and sir we really appreciate you for providing us such valuable resources.
@mohammedshafiuddin94393 жыл бұрын
Amazing Work sir, looking forward for React course by you...
@vidyah87873 жыл бұрын
Hi Sir, you've explained the concepts precisely. Really appreciate your time and efforts. I would request you to cover all the topics in this series along with advanced JavaScript libraries. It would be really helpful.
@supriyadash14012 жыл бұрын
I found the tutorial series very informative and easy to understand. Thank you for making these videos.
@Craftmagic12343 жыл бұрын
i am learning python from you sir. i am in 9th class right now no need to pay. thanks !!!!
@chinmaydas40533 жыл бұрын
Please Sir complete full JavaScript series...upto advanced concepts with making projects...we eagerly wait for your videos,we learn lots of concepts from you.. lots of respect for you Sir 🙏🙏🙏
@piyushpatel23473 жыл бұрын
i guess this video is not added in the playlist, please add it
@sayyedaaman57192 жыл бұрын
Thank you for that Video Sir, It's exellent video
@coolgirlsharu3 жыл бұрын
Waiting for your video from long days sir🙏🏻🙏🏻🙏🏻
@chellapandir8606 Жыл бұрын
Nice explanation with simply and perfect.. 😀
@nazrulislam77273 жыл бұрын
I've found it so cool and informative. Thank you.
@MrKrishna73 жыл бұрын
Incase if anyone wanted to know, those 3 dots (...) is called spread operator
@venupokkula45613 жыл бұрын
Sir u explained very well so it directly goes into my mind
@suryafc53013 жыл бұрын
Plzz continue this.series 🥺
@utubeboss45323 жыл бұрын
Hi sir, I'm your big fan☺
@ravichandra76643 жыл бұрын
This video has not been added to the playlist
@archanaagarwal14933 жыл бұрын
I have reached here..when is the next video coming? Love how you teach 🙏🙏
@strikerftw87293 жыл бұрын
Nice information
@AkashYadav-gx9hp3 жыл бұрын
Hi Navin Ji. Which is best for software BE or Btec? The comment viewing members suggest your comment this is useful for me.
@jayantamondal3242 Жыл бұрын
is string also a object, because here navin sir use .split(). So, we use dot for method of an object right?
@N-fc2111 ай бұрын
strings are not an object. they're primitive data types, but JavaScript automatically converts them into String objects temporarily when you call methods on them, such as .split(). This behavior allows you to use methods and properties of the String object wrapper on string primitives.
@ShivamKendre-fc3su3 жыл бұрын
great explained
@AshishKumar-pq6pr3 жыл бұрын
Awesome lecture
@bxglobe65963 жыл бұрын
Thank you sir.🙂
@aliensoul76002 жыл бұрын
@5:33 if I had two arrays how to swap it..? Like, let a = [ 4,5 ] let b = [ 6, 9 ]
@jabeenaziz_0772 жыл бұрын
let a = [ 4,5 ] let b = [ 6, 9 ] let a1 = 5; let a2 = 4; let b1 = 9; let b2 = 6; a3 = [a2,a1]; b3 = [b2, b1]; console.log (a3, b3); Hai I hope this will work,
@Mdroudian Жыл бұрын
Great video...
@mrpoojary-e7z3 жыл бұрын
sir please continue this series we are waiting for full series ..we are not getting your next videos sir
@parthshah13143 жыл бұрын
Kab se wait kar raha tha sir... Kaha kho gaye the app😶
@nirusanhariharan83823 жыл бұрын
I enjoyed , thanks🤞
@immm62623 жыл бұрын
Bhai pls tell how to merge two api into one ???
@coolgirlsharu3 жыл бұрын
Go videos on for each Loop in JavaScript .🙏🏻
@barbarasanchezvasquez22422 жыл бұрын
Thanks.
@gautamvelu85483 жыл бұрын
👍
@mrrishiraj883 жыл бұрын
🙏👍
@ef.goatsarena2 жыл бұрын
hi telsko sir, i can't swap like this , let num = [45,34,67,89]; num[0,1]=num[1,0] console.log(num[0]); => num[0]=45 ,num[1]=45 can anyone help me...