Complete JavaScript Course + Notes for Beginners in Hindi

Поділитися
Вставка

КОМЕНТАРІ • 619

  • @coderdost
    @coderdost  Рік тому +59

    Course Page. : github.com/coderdost/JavaScript-Course-2023
    Slides : github.com/coderdost/JavaScript-Course-2023/raw/main/slides.pdf
    00:00:00 Intro and Setups
    |-Chapter 1 Data Types
    * 00:07:55 1.1 Adding Javascript
    * 00:12:11 1.2 Variables
    * 00:16:10 1.3 Data Types
    * 00:20:40 1.4 Strings
    * 00:25:19 1.5 String Methods
    * 00:36:39 1.6 Numbers
    * 00:41:40 1.7 Loose Equality Vs Strict Equality
    * 00:44:14 1.8 Type Conversion
    * 00:48:12 1.9 Arrays
    * 00:55:35 1.10 Boolean Values And Comparison Operators
    * 00:58:34 Revision
    |-Chapter 2 Control Flow
    * 01:12:49 2.1 For Loop
    * 01:18:56 2.2 While Loop
    * 01:25:20 2.3 Do While Loop
    * 01:27:00 2.4 if / else if / else
    * 01:32:26 2.5 nested if statement
    * 01:34:37 2.6 Break And Continue
    * 01:39:09 2.7 Logical Operators
    * 01:45:21 2.8 Variable and Block Scope
    * 01:49:22 2.9 Ternary operator
    * 01:53:52 2.10 Switch statement
    * 01:56:26 Revision
    |-Chapter 3 Functions
    * 02:03:26 3.1 function and function expression
    * 02:07:22 3.2 function parameters and arguments
    * 02:11:29 3.3 Return statement
    * 02:15:58 3.4 Arrow Function
    * 02:19:05 3.5 Higher Order Function - Callbacks
    * 02:23:13 3.6 Higher Order Function - Returning functions
    * 02:27:31 3.7 IIFE
    * 02:29:19 3.8 setTimeOut And setInterval
    * 02:35:02 3.9 Hoisting
    * 02:37:50 Revision
    |-Chapter 4 Objects
    * 02:45:01 4.1 Object Introduction
    * 02:53:56 4.2 Function Vs methods
    * 02:56:57 4.3 “this” keyword
    * 03:02:41 4.4 forEach Method
    * 03:05:08 4.5 Objects inside Array
    * 03:08:20 4.6 Math Object
    * 03:12:15 4.7 Call, apply and bind
    * 03:26:27 4.8 Pass by value and pass by reference
    * 03:30:58 4.9 for-in loop
    * 03:33:16 4.9 Chapter 4 Revision
    |-Chapter 5 DOM
    * 03:42:02 5.1 DOM Introduction
    * 03:46:08 5.2 Query Selector
    * 03:51:43 5.3 Other Ways to access Elements
    * 03:56:58 5.4 innerText Vs innerHTML
    * 04:02:26 5.5 Getting And Setting the Attribute
    * 04:06:10 5.6 Adding the style
    * 04:08:10 5.7 Add, Remove And Replace Class
    * 04:10:50 5.8 Parent Children and Sibling
    * 04:17:31 5.9 Event Basics
    * 04:26:31 5.10 Creating And Removing Element
    * 04:29:18 5.11 Bubbling And Delegation
    * 04:35:42 5.12 More Events
    |-Chapter 6 DOM - Forms
    * 04:39:35 6.1 Submit Event
    * 04:46:35 6.2 Regular Expression
    * 04:55:19 6.3 Basic Form Validation
    * 04:59:16 6.4 Keyboard Event
    * 05:04:10 Revision
    |-Chapter 7 Array Methods
    * 05:12:44 7.0 Array Methods
    * 05:17:52 7.1 slice
    * 05:20:31 7.2 splice
    * 05:24:42 7.3 at
    * 05:28:35 7.4 Map
    * 05:32:08 7.5 Filter
    * 05:35:24 7.6 Reduce
    * 05:38:36 7.7 find
    * 05:41:32 7.8 findIndex
    * 05:44:36 7.9 some and every
    * 05:49:24 7.10 flat Method
    * 05:53:59 7.11 flatMap Method
    * 05:59:25 7.12 Sorting arrays
    * 06:06:44 7.13 Chaining of methods
    * 06:09:21 Revision
    |-Chapter 8 Date
    * 06:18:43 8.1 Date And Time
    * 06:24:37 8.2 Date And Time Methods
    * 06:28:14 8.3 Digital Clock
    |-Chapter 9 LocalStorage
    * 06:31:47 9.1 Local Storage intro
    * 06:34:01 9.2 Set and Get items
    * 06:38:11 9.3 Deleting Items
    * 06:39:34 9.4 Store Complex data
    |-Chapter 10 OOP
    * 06:44:42 10.1 Constructor and NEW operator
    * 06:51:30 10.2 Prototypes
    * 06:56:13 10.3 Prototypical inheritance
    * 07:02:18 10.4 ES6 Classes
    * 07:08:28 10.5 setters and getters
    * 07:14:27 10.6 static methods
    * 07:18:13 10.7 Class Inheritance
    * 07:23:37 10.8 Inheritance by Prototypes
    * 07:30:16 10.9 Chaining of methods
    * 07:33:05 Revision
    |-Chapter 11 Async JS
    * 07:41:41 11.1 Async Code
    * 07:44:41 11.2 XML Http Request
    * 07:50:16 11.3 Status code
    * 07:52:46 11.4 Call back Function
    * 08:00:34 11.5 Extracting JSON data
    * 08:04:01 11.6 Callback hell
    * 08:09:10 11.7 Basics of Promise
    * 08:16:48 11.8 Chaining of promise
    * 08:20:06 11.9 Fetch API
    * 08:22:53 11.10 Async Await
    * 08:26:39 11.11 Custom Errors
    * 08:29:13 11.12 Async Await without return statement
    * 08:32:16 11.13 Error Handling using try catch method
    * 08:36:10 Revision
    |-Chapter 12 ES6
    * 08:44:03 12.1 Array De-structuring
    * 08:52:45 12.2 Object De-structuring
    * 09:02:09 12.3 Spread Operator
    * 09:07:59 12.4 Rest Operator
    * 09:11:39 12.5 Short Circuiting
    * 09:16:26 12.6 Nullish coalescing operator
    * 09:18:22 12.7 for-of loop
    * 09:22:15 12.8 Enhanced Object Literals-shortcuts
    * 09:26:13 12.9 Optional Chaining
    * 09:31:37 12.10 Looping Objects
    * 09:36:22 12.11 Sets
    * 09:40:32 12.12 Map Intro And Map Iteration
    * 09:44:53 Revision
    |-Chapter 13 Modern Tooling
    * 09:54:46 13.1 Importing and Exporting ES6 Modules
    * 10:06:32 13.2 Top level await ES2022
    * 10:10:17 13.3 Module pattern
    * 10:14:17 13.4 Intro to NPM
    |-Chapter 14 Advance Concepts
    * 10:19:56 14.1 Closures

    • @rajeevthakur4916
      @rajeevthakur4916 Рік тому

      03:36:16 -- In this example toLowerCase function is not included so the o/p will not be as shown
      I.e cities.forEach((city) => lowerCased.push(city.toLowerCase()));

    • @VartikaSingh-l5n
      @VartikaSingh-l5n Рік тому +1

      sir pdf download nhi ho rha hai

    • @coderdost
      @coderdost  Рік тому +1

      @@VartikaSingh-l5n github.com/coderdost/JavaScript-Course-2023/raw/main/slides.pdf

    • @pranav288
      @pranav288 Рік тому

      hats off to your efforts man, this course will boom

    • @vishalbandal2964
      @vishalbandal2964 Рік тому

      @@coderdost sir pdf download nahi ho rahi hai

  • @programmingwithjavascript3579
    @programmingwithjavascript3579 Рік тому +80

    Bhai aap ke effort ke liye koi mere paas word nahi hai. Salute hai aapko 🙏

    • @AsadKhan-gp9sk
      @AsadKhan-gp9sk Рік тому +1

      Password?????
      Lekin kis cheez ka 😅

    • @4444-c4s
      @4444-c4s 6 місяців тому +1

      ​@@AsadKhan-gp9sk😂😂😂

    • @sumitsks-fu4vt
      @sumitsks-fu4vt 5 місяців тому +1

      @@AsadKhan-gp9sk

  • @newworld1150
    @newworld1150 Рік тому +38

    Please is channel ko aage bdha do yrr..Bina kisi notanki k bhaiya kitne simple tarike se sb kuchh sikha rhe hai.. please sb milke inki help kro ..or jada se jada share kro video ko please sbse request h ..😊😊😊😊

    • @coderdost
      @coderdost  Рік тому +3

      coderdost at gmail

    • @prashantpratapsingh3508
      @prashantpratapsingh3508 Рік тому +1

      Sir aapki playlist video or is long video mai kya difference h
      Is video ko follow kru ya playlist ko

    • @VishaljangidJngid
      @VishaljangidJngid 9 місяців тому

      Video ko ​@@prashantpratapsingh3508

  • @PriyankaSingh-dr3vl
    @PriyankaSingh-dr3vl Рік тому +4

    Mujhe functions samjh nhi aaya kabhi lekin aapne jo samjhaya yha mind blowing,, har concept clear ho gay function ka sir

  • @webdevsingh5819
    @webdevsingh5819 Рік тому +21

    3:12:15 Call, Apply AND Bind (+summary)
    5:11:57 BOM
    5:28:35 More Array Methods
    6:18:43 Date & Time
    7:02:18 ES6 Classes

  • @PriyankaKumari-lg6hb
    @PriyankaKumari-lg6hb 4 місяці тому +3

    Completed 3 hour of this lecture, understand function ,method, hoisting, higher order function etc..

  • @4444-c4s
    @4444-c4s Рік тому +19

    Revision for Notes Provided:
    58:34 - Ch.1
    2:37:50 - Ch.2
    3:33:17 - Ch.3
    6:09:22 - Array Methods
    8:36:10 - Async JS

  • @4444-c4s
    @4444-c4s Рік тому +3

    Aap log Kitni mehnat karte ho..vo bhi Free me padhane ke liye...❤❤❤
    Please accept my heartly wishes...

  • @PagaliWorld
    @PagaliWorld Рік тому +4

    It is difficult to find a teacher who can explain and teach so well. "great teacher" 👍🏻

  • @levelxgamingyt
    @levelxgamingyt Рік тому +2

    These all course make me MERN Stack developer in 2023.
    JavaScript, React JS and Node JS 🥰🥰
    Thanks! Bro

  • @4444-c4s
    @4444-c4s Рік тому +1

    Mind Blowing Explanation sirji..jab bhi revision ke liye ata hu, naya naya jaanne ko milta hai

  • @Kodeispoetry
    @Kodeispoetry Рік тому

    I wanted to send you encouragement, and if you can make indepth course in future on chrome extension development also.

  • @rishabhprasad7145
    @rishabhprasad7145 Рік тому +16

    I just finished watching your full course on JavaScript, and I am absolutely blown away. Thank you so much for creating such an incredible resource. The way you explained complex concepts in a clear and concise manner made it so much easier for me to grasp the foundations of JavaScript.

    • @coderdost
      @coderdost  Рік тому

      Thanks. have a Great coding journey ahead.

  • @wewewewewe1234p0
    @wewewewewe1234p0 Рік тому +2

    completed till chapter 6 ...connected with your way of teaching tq sir

  • @_swayyam
    @_swayyam Рік тому +4

    You're great sir. I watched your video even after watching 10+ hrs of other videos too but those videos does not make any sense as I don't understand anything from it and you just simply made it easy and understandable. Thanks it took me 15 days to complete it. Hardwork pays off!

  • @Connect_With_Akshat
    @Connect_With_Akshat 11 місяців тому +1

    I am a self learner full stack developer . I have seen lots of channels but his my favourite . Thank you sir for this content.

  • @rishitgahlaut6285
    @rishitgahlaut6285 Рік тому +3

    sir, wow you really understands very well and ,, your react and node series is awesome

  • @Async_aman
    @Async_aman Рік тому +10

    Sir, even the coading ninja people did not teach coding so well, even after taking 60 thousand, like you explained.

  • @Cryptomeyr
    @Cryptomeyr Рік тому +7

    time laga apko full video banane me lekin Javascript ka yesa video abhitk dekha nahi

  • @PriyankaKumari-lg6hb
    @PriyankaKumari-lg6hb 4 місяці тому +1

    Completed 6 hour of this lecture, understand the concept of all array method from basic to high ordered method

  • @websitedeveloper2003
    @websitedeveloper2003 Рік тому +2

    This is best js course on yt, thanks yu so much sir

  • @demo5357
    @demo5357 Рік тому +3

    I have discovered your channel just a month ago , and seriously I gain much more confidence on JavaScript then before. Sir You are a great teacher❤❤Your every video really a masterpiece . Thank you so much sir. Please upload content on live small React project.
    Currently I am learning React. Paid courses also have no compare to your content,100% True solid knowledge. "Agar koi aeisa banda bhi aapka video dekh liya ekbar,jisko kuch knowledge hi nhi hai, vo bhi 3 months mei ek front end developer ban sakta hai"
    great teacher ! great content ! this channel really deserve Millions of views.

  • @brijeshkumarverma1223
    @brijeshkumarverma1223 Рік тому +1

    1:52:58- 1 completed
    2:35:12- hoisting
    2:43:23- callback function
    3:05:36- 2 completed
    5:36:01- 3 completed

  • @kumarsanskar9921
    @kumarsanskar9921 Рік тому +1

    Just completed todayy! Glad to be part of this course. Thanku sir.

  • @chiragsinghrajpurohit4985
    @chiragsinghrajpurohit4985 Рік тому +2

    you r literally good. now i will follow all your course for sure.

  • @nishankrathore9038
    @nishankrathore9038 Рік тому

    apki cochng me es liye join krna chata hu ki ap acche se chizo ko samjha dete h or mere samjh me bhi aati h

  • @PriyankaKumari-lg6hb
    @PriyankaKumari-lg6hb 4 місяці тому +1

    completed 5 hour of this lecture, understand eventlistener and validation concept

  • @arshvlogs299
    @arshvlogs299 Рік тому +1

    I will complete this course in 10 days & share my experience after completion.

  • @suryakantmishra8346
    @suryakantmishra8346 Рік тому +6

    Awesome course just finished in 8 days.
    Loads of content . Revised old concepts and learned new one.
    Heading to Reactjs
    Hope so you make NextJs indepth tutorial too.
    You are awesome Abhishek sir 🙏🙏

  • @nutanpal7664
    @nutanpal7664 Рік тому

    Bemisal! Dost ho to aisa .. ! Teacher ho to aisa ! Thank you very much for being so amazing.

  • @Manishkumar-tr9yp
    @Manishkumar-tr9yp Рік тому +1

    This javascript course 10000 times better than any other paid course. Right now i finished the course. Now onto nodejs. THANKS A TON ABHISHEK JI

  • @piyushtech23
    @piyushtech23 Рік тому +6

    Beautiful explaination... please add little more projects which is built on js will help to understand well

  • @smooth8799
    @smooth8799 Рік тому +1

    Awesome video finally the search for best video ended
    Using hindi
    Perfect explanation
    Very clear
    No words for you sir

  • @mayurchaudhari4239
    @mayurchaudhari4239 Рік тому +1

    Sir you are awesome.apke jaisa teacher abhi tak nahi dekha . simple launguage me padhate ho sir app .
    Sir you are awesome 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏
    Salute sir ji

  • @manojjyani2477
    @manojjyani2477 Рік тому +1

    You are best 👍👍 today I learned so many new things

  • @PriyankaKumari-lg6hb
    @PriyankaKumari-lg6hb 4 місяці тому +2

    Completed 1 hour of this lecture, Understand each and every basic concept, I will comment on completion of every hour of this video
    Completed 2 hour of this lecture ,understand control flow

  • @krishna14932
    @krishna14932 Рік тому

    dost , trust me!!!!
    this is the most easily explained course about JS on youtube

  • @Newtrojan
    @Newtrojan Рік тому +3

    Awesome content and that too free of cost. Hats off to you.

  • @VikramsinhChampavat
    @VikramsinhChampavat Рік тому +5

    Superb course Abhishek sir. I started React Native but I was finding it difficult as I am from mobile background and no knowledge of JS. This master class helped me a lot to clear the concepts. Now I am feeling very much confident.
    Thanks very much again sir.

    • @coderdost
      @coderdost  Рік тому +1

      Great 👍 also you can react master class initial parts, as same concepts are in React.

    • @VikramsinhChampavat
      @VikramsinhChampavat Рік тому +1

      @@coderdost Sure, will do it. Thank you :)

  • @iqrashehzadi5590
    @iqrashehzadi5590 Рік тому +1

    Bht Acha andaz me smajaya ha sir ne ..Thank You

  • @rationalindianguy
    @rationalindianguy Рік тому +1

    WOW 👌👌 start hi Kiya h sir accha lga

  • @IBAD.AMAN.07
    @IBAD.AMAN.07 Рік тому +4

    Love from Dhaka, Bangladesh Sir. Your course is catchy to me. Easy and understandable. Your teaching method is fantastic like my dost. Truly admire and hugely appreciate your efforts. Kudos.

  • @aimdecider6637
    @aimdecider6637 Рік тому

    Apne ...hme ek bhut acha content dua smjhne m asan lg rha thank you 🙏🙏🙏

  • @sarthakbhimgade1804
    @sarthakbhimgade1804 Рік тому +5

    Great content and the way you have simplified the things is awesome!!🔥✌

  • @niteshprajapat7918
    @niteshprajapat7918 Рік тому +13

    Such amazing content and top-notch explanations!
    Thank you Sir ❤🔥

  • @vpowerup
    @vpowerup Рік тому

    wow never seen any channel which has put so much knowledge and efforts

  • @vikramsehraacademy7910
    @vikramsehraacademy7910 Рік тому +4

    Great content and the way you have simplified the things is awesome!!
    Sir, Please make a combine video of revision notes videos , it will help us to quikly revise whole concepts.

  • @sudhanshumishra2083
    @sudhanshumishra2083 Рік тому +1

    Just started this course

  • @puna770
    @puna770 Рік тому

    Awesome course in Hindi, instructor ne jis simple way mein samjhaya hai vah PERFECT hai, at last i wish to say God Bless You, keep on creating such wonderful courses

  • @jitendramistry1241
    @jitendramistry1241 Рік тому +2

    ❤ wow so much effort sir

  • @aqueeqazam
    @aqueeqazam Рік тому +2

    Sir, you explained the secret of JavaScript, that no one other can do 😊😊😊. I also watched the react js tutorial of coder dost more than 5 times, I became master in frontend.

  • @khansaakram1234
    @khansaakram1234 Рік тому

    amazing Javascript course. every concept is explained very clearly. Thank you coder dost.

  • @dinosouravtv3548
    @dinosouravtv3548 Рік тому

    This is the by far the best Javascript tutorial!.

  • @angadsingh2609
    @angadsingh2609 Рік тому +5

    Great explanation of each and every topic ❤

  • @saroshhashmi2488
    @saroshhashmi2488 Рік тому

    Very well-researched and fine-made video this is. Thank you 👍

  • @dilipbaghel9535
    @dilipbaghel9535 Рік тому +3

    Sir you are an amazing teacher, before attending this course I was really scared in JS but you teach everything so well and I really appreciate your hard work you put in making this course . May god bless you and I hope you always teaching us like this.

  • @taukirsheikh9405
    @taukirsheikh9405 Рік тому +1

    Mind blown, Thanks a lot for this course

  • @poojalahane2584
    @poojalahane2584 Рік тому

    Thank you so much sir for this awesome course.... Finally Complete.

  • @purohitanand8931
    @purohitanand8931 Рік тому +2

    I completed this full video. This is very nice and you teach very basic to advance 😊

    • @coderdost
      @coderdost  Рік тому

      Glad you liked it

    • @Ketan-m7n
      @Ketan-m7n Рік тому

      Share notes link as it is showing invalid

    • @coderdost
      @coderdost  Рік тому

      @@Ketan-m7n check in description and comments for direct link

    • @wasi5514
      @wasi5514 Рік тому

      Did you get the pdf??? If yes can you mail me please mail me because It's not opening now....

    • @coderdost
      @coderdost  Рік тому

      @@wasi5514 github.com/coderdost/JavaScript-Course-2023/raw/main/slides.pdf

  • @abhishekraghunath95
    @abhishekraghunath95 Рік тому

    bohot bohot shukriya bhaiya, much love and respect to you

  • @aliabbas632
    @aliabbas632 Рік тому +1

    Completed,well explained
    thank you very much
    Sir ❤

  • @adarshkhatri993
    @adarshkhatri993 Рік тому

    Sir ji..
    Tum to aag pe aag Lage Jaa rhe ho apni videos se...🤯🤯💎
    Thank you for this effort

  • @rushikeshthorat1505
    @rushikeshthorat1505 Рік тому

    Hello sir, ek baat batana chahta tha, Aap na teaching keliye hi bane ho, kya padhate ho aap, mujhe JS hard lagta tha halaki me not-technical background se hu but aapka video dekhne se ye JS ka dar khatam ho chuka hai, salute hai bhaii aapko, Ummed krta hu aap esehi padhate rahenge. Thank you so much dost❤

  • @DevArshadkhan
    @DevArshadkhan Рік тому

    Maaza Aagaya bhoot ache sir Alhamdulliah bhoot achi vedio hai

  • @madhursangeet29
    @madhursangeet29 Рік тому

    Thanks for such detailed video covered javascript topics..

  • @kapil.suryavnsi
    @kapil.suryavnsi Рік тому +1

    You are the revolution in the world of web development❤

  • @Yadav_nihar
    @Yadav_nihar Рік тому +3

    Sir, everything you have mentioned is great. However, it would be even better if there were time stamps attached to the content. This would make it easier for me and other. to revise specific parts as needed.

    • @ETHIRAJSUPPARAYAN
      @ETHIRAJSUPPARAYAN Рік тому

      There is time stand

    • @coderdost
      @coderdost  Рік тому

      there are lot of timestamps. but sometime youtube doesn't load it. reload.

  • @tarupathak
    @tarupathak 10 місяців тому

    sir, you are way better than paid courses yet you are underrated, thankyou so much for this wonderful easily understandable lecture. so grateful of you😇😇😇

  • @manishmaurya1
    @manishmaurya1 Рік тому +6

    Your tutorials are really catchy for me and I am enjoying it. It is helping me a lot as I know many things half-half, it is giving me confidence ❤️🙏🏻.

    • @coderdost
      @coderdost  Рік тому +1

      Glad you like them!

    • @kizigamer6895
      @kizigamer6895 Рік тому

      @@coderdost Can i pls tell what all extensions u are using in this pls

    • @coderdost
      @coderdost  Рік тому +1

      @@kizigamer6895 Live Server Extension / Prettier Code Formatter / Code Spell Checker

    • @kizigamer6895
      @kizigamer6895 Рік тому

      @@coderdost and is that theme inbuilt in vscode?
      i love the look of it so thought it might be an extension

    • @coderdost
      @coderdost  Рік тому +1

      @@kizigamer6895 this is a custom theme which you can build using settings.json in VScode and change each element by yourself. search on google of "workbench.editor vscode"

  • @4444-c4s
    @4444-c4s Рік тому +2

    Understand Slice and Splice with Examples:
    slice(startIndex, endIndex{excluded})
    - Don't Modifies Original Array
    - Returns Cutted Array
    arr: [1,2,3,4,5,6]
    arr.slice(1) returns: [2,3,4,5,6]
    arr.slice(1,3) returns: [2,3]
    arr.slice(-4) returns: [3,4,5,6]
    arr.slice(-4,4) returns: [3,4]
    arr.slice(-9) returns: [1,2,3,4,5,6]
    arr.slice(9) returns: []
    splice(Index, HowManyToDelete, WhichOnesToAdd)
    - Modifies Original Array
    - Returns Cutted Array
    arr: [1,2,3,4,5,6]
    arr.splice(1) returns: [2,3,4,5,6]
    modified arr: [1]
    arr.splice(1,3) returns: [2,3,4]
    modified arr: [1,5,6]
    arr.splice(1,2,8,10) returns: [2,3]
    modified arr: [1,8,10,4,5,6]
    arr.splice(-4) returns: [3,4,5,6]
    modified arr: [1,2]
    arr.splice(-4,2) returns: [3,4]
    modified arr: [1,2,5,6]
    arr.splice(-4,0) returns: []
    modified arr: [1,2,3,4,5,6]
    arr.splice(-4,-1) returns: []
    modified arr: [1,2,3,4,5,6]
    arr.splice(-9) returns: [1,2,3,4,5,6]
    modified arr: []
    arr.splice(9) returns: []
    modified arr: [1,2,3,4,5,6]

    • @prashantkashyap1735
      @prashantkashyap1735 Рік тому

      Bhai ek baat batao..... Sir ne alert or prompt ke baare me padhaya h ya nhi...... Agr padhaya h to kis topic ke andar h

    • @4444-c4s
      @4444-c4s Рік тому

      @@prashantkashyap1735 ye yaad nahi aa rha...par aap youtube pe search karke seekh lo..ye bahot aasaan si cheeze hai

  • @yashkhatwani230
    @yashkhatwani230 Місяць тому

    Thank you Abhishek sir .

  • @CarBus-s8g
    @CarBus-s8g Рік тому

    world best complete javascript course

  • @kaal_bhairav4146
    @kaal_bhairav4146 Рік тому

    Best Javascript Course ❤ on UA-cam

  • @khanprinters7104
    @khanprinters7104 Рік тому

    Great content and the way you have simplified the things is awesome!!🔥✌

  • @malikumairkhalid
    @malikumairkhalid Рік тому

    Very Helpful video Love your video thanks a lot for your help and support ❤❤

  • @mr_shaamii
    @mr_shaamii Рік тому

    Keep it up.. you are doing very well...

  • @sagarmehta225
    @sagarmehta225 Рік тому +1

    You are the real Kohinoor of students ❤

  • @shahhussain56
    @shahhussain56 Рік тому +1

    I was waiting for your next video and here we go 🚀🚀 thanks a lot. please make a full video on React Native if possible.

  • @somduttshukla6262
    @somduttshukla6262 Рік тому +2

    sir I really appreciate your wonderful work, this is the true meaning of selfless service to mankind, and as you are using Hindi language, I am assure that many good software developer will come from the downtrodden part of society as well,I am really a big fan of your simplicity..

  • @AshokKumar-pal
    @AshokKumar-pal Рік тому

    Real project usable topics!

  • @yogeshkumarpatil591
    @yogeshkumarpatil591 Рік тому

    Thank you 4 making videos.

  • @adityaTheExplore
    @adityaTheExplore Рік тому +1

    Comment kya likhu ye sochne me problem ho rahi hai😂😂
    But JS acche se smjh a raha hai❤❤

  • @rajghadashi997
    @rajghadashi997 Рік тому

    Excellent course for beginners ❤😊

  • @shwetasonth8407
    @shwetasonth8407 Рік тому

    Superb explanation sir very helpful👍.keep uploading these kind of helpful content.Thank you

  • @himanshurai2854
    @himanshurai2854 Рік тому

    You are the GOAT sir . Your teaching style is perfect. This is the best Javascript course even better than paid ones. Thanks a ton for your valuable content sir🙏

  • @Mayank_Bisht_MB
    @Mayank_Bisht_MB Рік тому +1

    I think thapa technical ki video dekhne ke baad ye video dekhoge to jyada samajh aayega

  • @prinsjoshi1269
    @prinsjoshi1269 Рік тому

    I have No word. Thank you so much……🎉😊

  • @YogeshSharma-jz9zq
    @YogeshSharma-jz9zq 5 місяців тому

    Your explanation is good bro 👍🏻

  • @ArpitKumar-fg4qy
    @ArpitKumar-fg4qy 3 місяці тому

    You mentioned that we cannot sort numbers using the sort method and that it is only possible for strings. However, when I checked in my VS Code, it worked as you said. But in online compilers like Programmiz, I can sort my array that contains numbers using the sort method

  • @shaikharbaz1022
    @shaikharbaz1022 Рік тому +1

    Thank you so much sir

  • @PriyankaKumari-lg6hb
    @PriyankaKumari-lg6hb 4 місяці тому +1

    complete 4 hour of this lecture , understand object related all things

  • @codewithdawood
    @codewithdawood Рік тому +3

    Wow moment for us we get such amazing tutorials from you. kindly also make real world projects with advance features like serverless fn. or edge fn. from vercel, graph QL, SSR, etc. there are no real world mern projects in hindi. waiting such advance content from you in future.

    • @coderdost
      @coderdost  Рік тому +1

      yes, in future. we are finishing some basic fundamentals first

  • @ishhu918
    @ishhu918 Рік тому +3

    Thank you so much for this... 😍😍😍😍😍 Really appreciate it 😊 .. waiting for next part.. and your notes .. again than you for this.. 😍 it helps me alot to learn JavaScript 🎉

    • @coderdost
      @coderdost  Рік тому +1

      Thanks. Glad it helped

    • @atheisth2373
      @atheisth2373 Рік тому

      how did you downloaded noteas

    • @ishhu918
      @ishhu918 Рік тому

      There's link mentioned in the video description

  • @ShreyaskarART
    @ShreyaskarART Рік тому

    This is one of the best courses out there for free.

  • @amanvarshney6791
    @amanvarshney6791 Рік тому

    Itna Aasan Koi kaise Bana Sakta hai Bhai Javascript Ko. Love You Bro.

  • @thelearningtrader7212
    @thelearningtrader7212 Рік тому

    The Revision part after completing a chapter is Awesome

  • @manisharya2138
    @manisharya2138 Рік тому

    your way of explain and providing notes are next level 🔥🔥🔥🔥🔥

  • @seekingDivineAt30
    @seekingDivineAt30 Рік тому

    3:22:35 - Call,apply and bind
    6:09:22 - Quick recap

  • @benny-brawlstar6509
    @benny-brawlstar6509 Рік тому +1

    44:14 Type conversion

  • @arefinite
    @arefinite Рік тому

    next js please..your videos are very helpful. Thanks a lot for your effort and contribution. Many Many Thanks.