Javascript in 1 shot in Hindi | part 1

Поділитися
Вставка
  • Опубліковано 30 вер 2024

КОМЕНТАРІ • 2,2 тис.

  • @chaiaurcode
    @chaiaurcode  Рік тому +682

    Timestamp b laga diye h. Mujhe to laga ki aap logo bologe ki sir aapne videos me itni mhnt ki, timestamp hum dete h comments me. 😉
    Ab faila do is video ko sab jgh, kr do system hang
    aur ek dusre ki help kro discord pe, hitesh.ai/discord

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

      Sir node Js ka series kab tak aayega

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

      Sir node js video kab la rahe ho

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

      ye oneshot video....50 video wale playlist ka joined video hai kya??

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

      Thank you so much hitesh sir ❤

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

      Mane to kl hi soch lia tha ki ab JS ki complete video aaygi jb aapne kl long form ki video ki bat community post ki tvi se m excited thi😊♥♥🍫🍫🍫

  • @severussnape3062
    @severussnape3062 8 місяців тому +297

    START DATE - 18 January (Morning)
    COMPLETE DATE - 20 January (Afternoon)
    Thank you for this amazing series :)

    • @varunbehere2072
      @varunbehere2072 8 місяців тому +10

      God

    • @bossnation8921
      @bossnation8921 7 місяців тому +10

      Isse kya khud ke projects develop kr paa rhe ho?

    • @ihtapirt
      @ihtapirt 7 місяців тому +4

      Bro I'm having trouble running code, can u help me

    • @FatehAli-o9k
      @FatehAli-o9k 7 місяців тому

      yes tell me
      @@ihtapirt

    • @Thankstshirt
      @Thankstshirt 7 місяців тому

      ​@@ihtapirtyeah tell me? I will try to help

  • @l-_._-l
    @l-_._-l 11 місяців тому +254

    5:11 [ Setting up environment ]
    1 The difference between .js and .txt file is that .js file can be run
    2 Environment Node js/ deno js (in past html was needed but not now)
    16:53 [ Git hub ]
    1 code
    ctrl + shft + p add dev configuration file
    27:14 [ let var const ]
    1 variable declaring best practices
    2 const variable can't be modified
    3 console.table
    4 js used to not work on scope
    5 prefer not use var
    6 variable with out initializing is undefined
    43:54 [ data types ECMA standard ]
    1 use strict
    2 alert (" ")
    3 only code execution is not but goal should always be readable (prettier)
    4 mdn doc tc39
    5 data types
    - number
    - bugInt
    - string
    - boolean
    - null
    - undefined
    - symbol
    Null is object
    Object
    1:01:55 [ data type conversation ]
    - type of normal = lowercase
    - "33" => 33 number
    - "33abc" => NaN
    - true => 1
    - false => 0
    - 1 , " " => true
    - 0 , " " , "abc" => false
    1:14:46 [ why string to number]
    Arithmetic Operation
    1 + "2" => 12
    3 + 3 - 3 * 3 / 3 +( 2 + 2 )
    +true => 1
    +"" => 0
    Prefix increment
    Postfix increment
    1:29:49 [ comparison of data type ]
    >
    <
    =
    ==
    ===
    (Don't compare different data types)
    null > 0
    null< 0
    null true bcz null is converted to 0
    [Summary]
    - Comparing same datatypes are easy to predict
    - Don't compare different data types
    1:38:38 [ data type summary ]
    - interview related questions
    - primitive and non primitive (call by value, call by reference)
    - primitive:7 (call by value)
    - string, number, bolean, null, undefined, symbol , BigInt
    - non primitive:3 (call by reference)
    - arrays, object, function
    - dynamically type vs statically type
    - js is dynamically typed
    - const id = Symbol("123")
    - const anotherId = Symbol("123")
    - id === anotherId => false
    - array, object, function overview
    - typeof datatyped is available on documentation
    01:56:40 - [ stack and heap memory ]
    - Primitive data type goes to Stack we get a copy of that value.
    - Non-Primitive data type goes to Heap we get refrence of that value.
    02:06:34 [ Strings in JS ]
    - strings can be donated by ' or "
    - to concatenate we can use
    - back tick (sting interpolations)
    e.g `hello ${name}`
    - sting is object but it has length property
    - it can be access as
    e.g stringName[0]
    - stringName.__proto__
    - stringName.toUpperCase()
    - stringName.charAt()
    - stringName.indexAt()
    - stringName.substing(0,4) can have -ve value
    - stringName.slice(-7,4) can have -ve value
    - stringName.trim() , .trimStart(), .trimEnd()
    - stringName.replace('what to search', 'what to replace with')
    - stringName.includes('name')
    - stringName.split('sepater','limit')
    - search for small() yourself
    02:29:17 - [ Number and maths ]
    =========== Number ===========
    - Type conversation
    -const score = 400 (implicit)
    -balance = new Number(100) (explicit, this return an object)
    - use __proto__ on both as previous to get all methods
    const balance = 100.12323
    // used for how many values after decimal
    -balance.toFixed(2) // 100.12
    // used for how many values to take in total (priority is before decimal)
    - balance.toPrecision(4) // 100.1 (returns a string)
    const hundreds = 1000000
    hundreds.toLocaleString('en-IN'); // inserts commas
    -balance.toString()
    =========== Maths ===========
    // console.log(Math.abs(-4));
    // console.log(Math.round(4.6));
    // console.log(Math.ceil(4.2));
    // console.log(Math.floor(4.9));
    // console.log(Math.min(4, 3, 6, 8));
    // console.log(Math.max(4, 3, 6, 8));
    console.log(Math.random());
    console.log((Math.random()*10) + 1);
    02:52:34 - [ date and time ] (I know following code is a mess but will try to give a consice note on date)
    JavaScript Date objects represent a single moment in time in a platform-independent format. Date objects encapsulate an integral number that represents milliseconds since the midnight at the beginning of January 1, 1970, UTC (the epoch).
    Note: TC39 is working on Temporal
    let myDate = new Date()
    console.log(myDate); // 2024-01-04T07:35:09.154Z
    console.log(myDate.toString()); // Thu Jan 04 2024 07:35:09 GMT+0000 (Coordinated Universal Time)
    console.log('dateString '+ myDate.toDateString()); // dateString Thu Jan 04 2024
    console.log('isoString '+ myDate.toISOString()); // isoString 2024-01-04T07:35:09.154Z
    console.log('JSON '+ myDate.toJSON()); // JSON 2024-01-04T07:35:09.154Z
    console.log('LocaleDateString '+ myDate.toLocaleDateString()); // LocaleDateString 1/4/2024
    console.log('LocaleString '+ myDate.toLocaleString()); // LocaleString 1/4/2024, 7:35:09 AM
    console.log('LocaleTimeString '+ myDate.toLocaleTimeString()); // LocaleTimeString 7:35:09 AM
    let myDate = new Date()
    console.log(myDate);
    console.log(myDate.toString());
    console.log('dateString '+ myDate.toDateString());
    console.log('isoString '+ myDate.toISOString());
    console.log('JSON '+ myDate.toJSON());
    console.log('LocaleDateString '+ myDate.toLocaleDateString());
    console.log('LocaleString '+ myDate.toLocaleString());
    console.log('LocaleTimeString '+ myDate.toLocaleTimeString());
    myDate 2024-01-04T07:35:09.154Z
    String Thu Jan 04 2024 07:35:09 GMT+0000 (Coordinated Universal Time)
    dateString Thu Jan 04 2024
    isoString 2024-01-04T07:35:09.154Z
    JSON 2024-01-04T07:35:09.154Z
    LocaleDateString 1/4/2024
    LocaleString 1/4/2024, 7:35:09 AM
    LocaleTimeString 7:35:09 AM
    // creating a custom date (months start from 0)
    let myCreatedDate = new Date(2023, 0, 23) // Mon Jan 23 2023
    let myCreatedDate = new Date(2023, 0, 23, 5, 3) // 1/23/2023, 5:03:00 AM
    let myCreatedDate = new Date("2023-01-14") // YYYY-MM-DD month start from 1
    let myCreatedDate = new Date("01-14-2023");
    // MM-DD-YYYY console.log(myCreatedDate.toLocaleString());
    let myTimeStamp = Date.now();
    console.log(myTimeStamp); // milli seconds passed from January 1, 1970
    console.log(myCreatedDate.getTime()); // returns time in milliseconds
    console.log(Math.floor(Date.now()/1000)); // returns time in seconds
    let newDate = new Date();
    console.log(newDate);
    console.log(newDate.getMonth() + 1); // starts from 0
    console.log(newDate.getDay()); // starts from monday
    `${newDate.getDay()} and the time ` use back ticks to create full date and time
    newDate.toLocaleString("default", {
    weekday: "long",
    });
    (Attention: These are my personal notes.
    Everything taught by sir is not here I only note things that I find need of and you can take benefit from it as you like. 😊)

    • @i_chandanpatel
      @i_chandanpatel 10 місяців тому +17

      Bhai aage bhi padh.... Padhna chhod hi diya tune to😂

    • @l-_._-l
      @l-_._-l 10 місяців тому +5

      @@i_chandanpatel Le bhai aa gya wapis😆

    • @tompatel5772
      @tompatel5772 9 місяців тому +2

      Kha padh rha he bhai Padh lee 😅

    • @rohitpandey8840
      @rohitpandey8840 9 місяців тому +2

      Pdhle bhai

    • @amarnathgarai
      @amarnathgarai 6 місяців тому +3

      pura padle bhai

  • @niravvaghela634
    @niravvaghela634 2 місяці тому +76

    Jo koi meri tarah comment padhke start karne wala he unko me personally khena chahunga... just watch it ... kyuki mene complete kiya and muje nai lagta ki koi paid course bhi itne efforts dega hamare liye , thank you hitesh sir❤ Love from Gujarat

    • @bittertruth4673
      @bittertruth4673 2 місяці тому

      im thinkng to watch this full,i have a question...is this for beginners because i dont know anything abt JavaScript,i have studied html and css till now,would it be helpful for me??

    • @Kamal-go4vt
      @Kamal-go4vt 2 місяці тому

      @@bittertruth4673 yes you can start

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

      @@bittertruth4673 yes , he teaches from beginning all the way to advance concepts in such an easy way, better than paid courses. I would say go for it

    • @niravvaghela634
      @niravvaghela634 Місяць тому +1

      @@bittertruth4673 yes it will be help full for you but 1 suggestion he ki sir kuch bole or samaj na aaye to Google karke dekh Lena ya fir kahi se padh Lena baki to sir he hi ..
      Start krdo and sir bole utna karna ... practice must needed, all the best 💥

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

      Is it for beginners?

  • @WebAquib
    @WebAquib 4 місяці тому +24

    START DATE - 30 May (Morning)
    COMPLETE DATE - 1 June (Afternoon)
    Thank you for this amazing series :) (2)

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

      damn bro , u did it really fast...did you already know it and just wanted to revise??

    • @rajraushansingh2477
      @rajraushansingh2477 22 дні тому

      how to open second time this codespace with same configuration after closing first time

  • @nusratlines4947
    @nusratlines4947 11 місяців тому +110

    Hitesh, you can't imagine what you are doing for us. Your efforts are greatly appreciated. Thank you for sharing this wonderful content with us.

    • @rajraushansingh2477
      @rajraushansingh2477 22 дні тому

      how to open second time this codespace with same configuration after closing first time

  • @lamborghini543
    @lamborghini543 Рік тому +217

    Chalo jaldi se mai sir ko inform kar deta hu ki "This is first comment "😂😂😂😂

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

      Hhi❤u

    • @YashSharma-fv4mi
      @YashSharma-fv4mi 11 місяців тому

      Gand m dal le apne comment ko

    • @AnweR-AmmaR
      @AnweR-AmmaR 9 місяців тому +1

      😂

    • @FrixzossYT
      @FrixzossYT 7 місяців тому

      😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂

  • @khitijkarmakar
    @khitijkarmakar Рік тому +81

    JavaScript is a dynamically typed language, which means that data types of variables are determined by the value they hold at runtime and can change throughout the program as we assign different values to them.

  • @ashishrajput2571
    @ashishrajput2571 7 місяців тому +1

    watching video one more time revison bhi jaruri he 😊😊😊😊

  • @cybrbby7
    @cybrbby7 6 місяців тому +31

    The best thing about this channel is He explains everything in detail and in a very calm and composed way!

    • @barnam_das
      @barnam_das 10 днів тому

      Yes, Indeed this video is so far the best I have seen.
      Btw You are in which year of your college?

    • @cybrbby7
      @cybrbby7 10 днів тому

      @@barnam_das 2nd year bca open

  • @ziaulhoquepolash4682
    @ziaulhoquepolash4682 Рік тому +74

    00:00:00 - Javascript for beginners
    00:05:04 - Setting up environment
    00:16:53 - Save and work on GitHub
    00:27:14 - Let const var
    00:43:54 - Datatypes and ECMA standards
    01:01:55 - Datatyope conversion confusion
    01:14:46 - Why string to number
    01:29:46 - comparison of datatypes
    01:38:38 - datatypes summary
    01:56:40 - stack and heap memory
    02:06:34 - String in javascript
    02:29:17 - Number and maths
    02:52:34 - date and time
    03:10:47 - Array in javascript
    03:29:42 - Array part 2
    03:45:23 - Objects in depth
    04:03:31 - Objects part 2
    04:21:13 - Objects destructuring and JSON API
    04:34:46 - Functions and parameters
    04:53:59 - functions with objects
    05:05:14 - Global and local scope
    05:14:51 - Scope level and mini hoisting
    05:29:47 - this and arrow function
    05:48:16 - Immediately invoked function
    05:55:33 - How does javascript works behind the scene
    06:21:45 - Control flow in javascript
    07:14:34 - for loop break and continue
    07:39:05 - while do while loop
    07:49:24 - High order array loops
    08:23:35 - filter map and reduce

  • @nagank90
    @nagank90 10 місяців тому +6

    Sir its very humble request please enable English subtitles please

  • @8kedits909
    @8kedits909 Рік тому +27

    First time i saw any tutorial from this man.
    He is truly a Gem❤
    9hours of pure knowledge, best tutorial on UA-cam for beginners.
    he will clear all your doubts.
    Thanks alot sir!!
    Huge Respect from Pakistan.

  • @heyankitrajput
    @heyankitrajput 3 місяці тому +3

    Day 1 - 49:32
    Day 2 - 1:29:49
    Day 3 - 2:13:11
    Day 4 - 4:21:26
    Day 5 - 7:10:19

  • @amanpanwar.
    @amanpanwar. 8 місяців тому +2

    Start date - 25/January/2024

  • @amna.sadiakorai
    @amna.sadiakorai 11 місяців тому +44

    10: 34 pm 1st November 2023
    I have completed a 9-hour-long course on JavaScript ✌:)
    Thank you for this valuable series. I appreciate your efforts, sir.

  • @yashrahadve
    @yashrahadve Рік тому +11

    Sir, I completed javascript series recently but this video is helpfull for revision of JavaScript.
    Thanks Sir for giving this video

  • @parmodrajput3981
    @parmodrajput3981 11 місяців тому +22

    Your web series for JS is very helpful. I've watched many UA-cam JavaScript courses, but because I'm new to this field, I couldn't understand them well. Your teaching style is great, and I hope you'll keep teaching. Your explanations really help me learn.

  • @amantripathi6469
    @amantripathi6469 8 місяців тому +2

    hello bhaiya YE COMMENT THODA LENGTHY HO SAKTA H PLEASE PADH LENA AAP :(
    me aapke videos kaafi time se dekh rha hu or bht kch seekha bhi h but 1 aapse genuine suggestion chahiye h mjhe 6 months ka internship experience h Data Analyst domain me and isi me career bnana h but pichle 9-10 mahine se job dekh rha hu but ni mil rhi h please help :( 😔 or 4 mahine as a frontend kaam bhi kia h but man ni lga to chhod di.

  • @anamveenkaur9735
    @anamveenkaur9735 5 місяців тому +8

    This is the best ,complete ,most logical,most meaningful one shot ever i have seen in javascript . hatttts of to sirr for hardwork and dedication for students on youtube they are doing their best to provide us with the most complete series without a payment !!!!! shared with friends too uh deserve millions more viewss all the best sirr!!!!!

  • @stromsen357
    @stromsen357 10 місяців тому +30

    This channel deserves 1m+ subscribers. The way sir teaches the concepts is Mind-blowing .
    From now onwards ,this channel will be my first preference in terms of coding .🤴🤴🤴🤴🤴🤴🤴🤴

    • @chaiaurcode
      @chaiaurcode  10 місяців тому +15

      Thank you so much 😀

  • @RajaGupta-x5i
    @RajaGupta-x5i 11 місяців тому +17

    Love for hindi ❤ . 3 days me part 1 complete hogya without feeling stressed or overwhelmed. A lots of information explained in intersting way always makes learning fun. Thankyou hitesh sir for your efforts. Hindi me coding is my personal favorite now..

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

    6:19:30 Sir i have never seen such a detail discussion for JS on youtube ....Amazing Sir.....❤❤

  • @abhishekkuradia898
    @abhishekkuradia898 5 місяців тому +1

    Thank you alot, you are blessing for us ❤

  • @madhukar0721
    @madhukar0721 8 місяців тому +1

    Part 1 Completed (13/01/2024)

  • @shubhsharma19
    @shubhsharma19 9 місяців тому +19

    A quick tip for those who are using for in loop for arrays.
    remember that the key used for (const key in arr) here is a string so if u want to do some operations on that key thinking its a number that is not possible.
    Why is the key a string you would ask that is because its being used for an object and object takes strings as keys.
    For example:
    const sum = function (arr) {
    for (let i in arr) {
    // since i is a string so we need to convert it to a number with parseInt method
    i = parseInt(i, 10);
    if(i < arr.length-1) {
    arr[ i ] = arr[ i ] + arr[ i+1 ];
    }
    }
    return arr;
    }
    console.log(sum(arr)); This will print an array with elements that have sum of adjacent element.

    • @rajraushansingh2477
      @rajraushansingh2477 22 дні тому

      how to open second time this codespace with same configuration after closing first time

  • @mobiedit4848
    @mobiedit4848 Рік тому +19

    Great❤ I am web developer but i love to watch you because you handle any concept with ease and love
    Chai or code is next level 🎉

  • @Krishna9m
    @Krishna9m Рік тому +28

    00:00:00 - Javascript for beginners
    00:05:04 - Setting up environment
    00:16:53 - Save and work on GitHub
    00:27:14 - Let const var
    00:43:54 - Datatypes and ECMA standards
    01:01:55 - Datatyope conversion confusion
    01:14:46 - Why string to number
    01:29:46 - comparison of datatypes
    01:38:38 - datatypes summary
    01:56:40 - stack and heap memory
    02:06:34 - String in javascript
    02:29:17 - Number and maths
    02:52:34 - date and time
    03:10:47 - Array in javascript
    03:29:42 - Array part 2
    03:45:23 - Objects in depth
    04:03:31 - Objects part 2
    04:21:13 - Objects destructuring and JSON API
    04:34:46 - Functions and parameters
    04:53:59 - functions with objects
    05:05:14 - Global and local scope
    05:14:51 - Scope level and mini hoisting
    05:29:47 - this and arrow function
    05:48:16 - Immediately invoked function
    05:55:33 - How does javascript works behind the scene
    06:21:45 - Control flow in javascript
    07:14:34 - for loop break and continue
    07:39:05 - while do while loop
    07:49:24 - High order array loops
    08:23:35 - filter map and reduce

  • @MoteeullahAzmi
    @MoteeullahAzmi 8 місяців тому +2

    Start: 28/01/2024
    End : 10/02/2024
    Total : 14 Days

  • @shivamsrivastava2776
    @shivamsrivastava2776 7 місяців тому +1

    Sir I am From HR Fresher can I switch my Career in Programming?????

  • @hafizwaqar689
    @hafizwaqar689 Рік тому +41

    I'm Hafiz Waqar Ahmed, and I'm from Pakistan. I've watched many UA-cam JavaScript courses, but because I'm new to this field, I couldn't understand them well. Your teaching style is great, and I hope you'll keep teaching. Your explanations really help me learn.

    • @Question-answer-gr3ql
      @Question-answer-gr3ql 11 місяців тому +4

      aao bhai india me kuchh achha hi seekho ge

    • @harshvyas3398
      @harshvyas3398 6 місяців тому +6

      you will understand well when you accept -> "Hindustan Zindabad".
      and learn something better like coding not blasting.

    • @Carson00_11
      @Carson00_11 5 місяців тому

      @@harshvyas3398 chup hoja

    • @Shabs_official
      @Shabs_official 3 місяці тому +7

      ​@@harshvyas3398 Yahan bhi... Matlab aap log ksi comment section ko to chhor diya kro hr comment section Jahan PAKISTANI nazr a jaye usse border samajhne lg jaate ho

    • @harshvyas3398
      @harshvyas3398 3 місяці тому +2

      @@Shabs_official ab galti karoge to abba belt le ke marenge hee na, but ab waha to aa ni sakta to comments me hee mar rhe...

  • @amarendrasahoo3044
    @amarendrasahoo3044 Рік тому +11

    Hitesh sir, you are a wonderful teacher. I must say teaching is an art and you are one of the best in this field. I have completed "Javascript in 1 shot in Hindi | part 1" and felt somehow confident now. Many thanks to you. I will start "Javascript in 1 shot in Hindi | part 2" very soon. Wish you good luck, please bring many more videos in the future. One request please add more JS interview questions.

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

    A Little thanks from my side

    • @chaiaurcode
      @chaiaurcode  Рік тому +15

      1st appreciation of the channel. Ye model b thik h, jo mn ho pay krdo, vrna free me enjoy kro. ❤️

  • @curious_kishan
    @curious_kishan 7 місяців тому +1

    Thank So Much Sirr❤ For this Premium Javascript Course for free!

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

    Keep providing quality content brother💐

  • @riturajsingh7695
    @riturajsingh7695 11 місяців тому +5

    apki awaj itani pyari hai, bas sunate rho..Thank you sir for such great effort.

  • @maruthiagrawal4490
    @maruthiagrawal4490 Рік тому +46

    I have watched Javascript series from Thapa , codewithHarry and........ But the level of content this series have is on another level.
    Thanks Hitesh sir for the wonderfull series to explain all the things related to JS . Thanks from the depth of my heart ❤❤❤❤

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

      hi bro , i made 2 videos about dsa with javascript , i hope that you will be interested 😇 , currently i am making a video on Linked list , but i need some feedback... , ii just want to know your Hones opinion , do you think those videos are made well?

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

      The way he teach no match 😊

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

      If u have already watched various javascript videos but still learning from more and more tutorials then ur pathetic

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

      @@shivuwuu Bro increase the length of your videos at least of 10 min so that u also can get the some income through it

    • @Emiway37-n9h
      @Emiway37-n9h Рік тому +1

      My brother no doubt thapa, harry, techgun, are good you tuber but our hitesh sir is legend himself. Founder of coding environment

  • @SPORTSWALATECHNOLOGIES
    @SPORTSWALATECHNOLOGIES 4 місяці тому +2

    Jai Chai Jai Code, Baba Javascript wala

  • @6.squash.936
    @6.squash.936 Рік тому +10

    Finally Done Completely took me 3 days since i already knew JavaScript but wasn't confident enough , this time made Notes as well Thanks Hitesh Sir .
    I will start the 2nd Part now excited to Learn DOM and Async JS

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

      How much time did u gave to this?

    • @6.squash.936
      @6.squash.936 Рік тому

      @@armaan5413 make your own notes man.
      That is the only way you will understand.

  • @RajeevTutorials-ii4jc
    @RajeevTutorials-ii4jc 11 місяців тому +5

    It's the best playlist in the hindi version all over the free content sir jii
    ❤❤❤❤❤❤

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

    Bhayya don't add ur old videos here currently running js series is running well and excellent & people will not be able to stick one series and you lose the subscriber as will, keep here only new content ❤❤ from Hyderabad..

    • @chaiaurcode
      @chaiaurcode  Рік тому +15

      Ye gajab baat h ki meri upload pe b restriction h😂

    • @its.piyush78
      @its.piyush78 Рік тому

      ​@@chaiaurcodeSir aap JS ki playlist already uploaded hai us se saari vedios ko assembled kar ke upload rahe ho
      Es vjh se restrictions aa rahii

  • @AnkitTiwari-o1s
    @AnkitTiwari-o1s 2 місяці тому +1

    Todatestrings
    Toisosstrings
    Tojson
    Tolocsldatestring
    Tolocaltimestring

    output
    Tue Jul 16 2024
    2024-07-16T19:16:03.246Z
    7/16/2024
    7:17:53 PM
    Tue, 16 Jul 2024 19:18:18 GMT

  • @Shivamsharma-gp9sp
    @Shivamsharma-gp9sp 6 днів тому +1

    Best Javascript Course Ever in UA-cam ( Thanx you SO much sir )

  • @sameerpathak-v5q
    @sameerpathak-v5q 8 місяців тому +9

    sir this course is something else, his is going to set a benchmark for others for the years to come, really hats off to you and your efforts.

  • @AhmadRaza-gc2uw
    @AhmadRaza-gc2uw Рік тому +8

    I really like your confident style of teaching,
    Whenever i have to learn any web dev concept I would go for your content.
    I really appreciate your all the hard work you have put in for creating this amazing course.
    Sending you lots of love from Pakistan ❤

  • @khushh.i
    @khushh.i 7 місяців тому +4

    Sir your teaching style is just awesome like CHAI!!😍

  • @rohitnaikawadi1787
    @rohitnaikawadi1787 Місяць тому +1

    "Thank you so much for sharing such amazing teaching and knowledge! Your content is truly inspiring and has made a huge difference in my learning journey. Keep up the fantastic work-you're changing lives one video at a time! 🙌🎉"

  • @SuleimanTabib865
    @SuleimanTabib865 2 місяці тому +1

    Start Day: 12 July, 12:23PM;
    Completion Day: (To be edited)

  • @Go_195
    @Go_195 8 місяців тому +8

    One of the Best JavaScript Series on UA-cam

  • @ryke3602
    @ryke3602 9 місяців тому +6

    Great Work Sir ,I go through diff javascript courses but no one has covered this much depth 🚀🚀🚀

  • @HelloBhavendra
    @HelloBhavendra Рік тому +8

    Sikhane wale toh bhot hai per aap jaisa real and practical knowledge share krne wale bhot km hai
    Thanks from chhattisgarh ❤

  • @fnaaz6038
    @fnaaz6038 5 місяців тому +1

    Hii sir I am very glad to share that I got my first internship . Ye sirf apki waja se possible hua he .🙏

  • @abidumrani2773
    @abidumrani2773 Місяць тому +1

    just completed, bhai shb the way Hitesh sir teaching 🔥 next level jo kai years m concept clear ni huwy the finally everything cleared. More Respect ❤❤

  • @santoshvarma6158
    @santoshvarma6158 9 місяців тому +8

    Thank you for everything you do for the community. Never thought I'd learn javascript. Bless you!

  • @drishyamishra8082
    @drishyamishra8082 5 місяців тому +3

    Started yesterday! Being a final year student its very important to clear basics for interview purpose and to build something. Your video has been a life-saver for me! Being a chai-lover, I always keep my chai ready before coding and so do you while teaching. You are really a good teacher, its always quality over quantity of videos for you. Cheers!

  • @TechnicalAli3143
    @TechnicalAli3143 Місяць тому +1

    Start time [7:00am]
    Ended [7:00pm]
    Js in 12 Hours Completed 😀

  • @wrivlogs1049
    @wrivlogs1049 10 місяців тому +13

    Just finished. Wonderful video. Wish I had such a tutorial 10 years back. Much appreciated for all the effort in making the entire series so easy to understand.

    • @chaiaurcode
      @chaiaurcode  10 місяців тому +14

      Glad you enjoyed it!

  • @vaibhavpathak7026
    @vaibhavpathak7026 7 місяців тому +3

    took me 6 day complete it ,I would like to say this is the one of the best js tutorial I came across on yt thank u so much hitesh sir for your efforts💓

  • @shwetaswarup5827
    @shwetaswarup5827 Рік тому +15

    Is this for real ? Such a perfectionist in all aspects , the way u speak , the way present , the way u teach .....impressed in all aspects of your perfection. Keep doing this work ❤

  • @ankitkumaryadav4367
    @ankitkumaryadav4367 Місяць тому +1

    for (let index = 0; index

  • @hasiiabbasi
    @hasiiabbasi 28 днів тому +1

    I completed Part 1 in 3 days. The top-level content was very helpful.

  • @visheshagrawal8676
    @visheshagrawal8676 8 місяців тому +32

    finally completed it took me 13 days to complete it... It's an amazing content!! ( 28 Dec - 10 Jan)

    • @sahiedits6401
      @sahiedits6401 8 місяців тому +9

      aur yaha main 1 months se padh raha hu

    • @RajputMayank-si9kh
      @RajputMayank-si9kh Місяць тому +1

      Does this course helps us in web dev?

    • @AbhijeetGhosh-f7b
      @AbhijeetGhosh-f7b Місяць тому +2

      @@RajputMayank-si9kh this course is designed for 3d rendering and character animation. This has nothing to do with webdev.

    • @RajputMayank-si9kh
      @RajputMayank-si9kh Місяць тому +1

      @@AbhijeetGhosh-f7b Thanks

    • @RajputMayank-si9kh
      @RajputMayank-si9kh Місяць тому

      @@AbhijeetGhosh-f7b It doesn't Helps us in Web Development?

  • @SakshiChak
    @SakshiChak 9 місяців тому +3

    Thank you so much, sir, for these videos. I didn't have any confidence in JavaScript before, but now, confidence is building up. Your tutorials have been incredibly helpful, and I appreciate the effort you put into making complex concepts easier to understand.

  • @fm-classes5598
    @fm-classes5598 Рік тому +5

    Teaching is an art.
    You are the master of this art.
    Salute you sir

  • @AmolGhode-y9m
    @AmolGhode-y9m 8 місяців тому +1

    thank you sir for wonderfull Javascript Series I have watched complete #javacsript part 1

  • @Thankstshirt
    @Thankstshirt 7 місяців тому +1

    Agr UA-cam me infinite likes ka option hota to I would have definitely clicked on that button for this video❤❤❤ seriously 😳😳😮

  • @shreyasdeshpande6653
    @shreyasdeshpande6653 8 місяців тому +3

    Very in-depth and concise course. Thank you sir for putting your heart in this. 🙏🏻🙏🏻🙏🏻

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

    One of the best video series for beginners. This video is especially for those, who lack of confidence that they can not do coding. I love this video. Thank you Sir @chaiaurcode. Love from Pakistan.
    Five stars⭐⭐⭐⭐⭐

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

    Thank you so much for making the Javascript series. Your teaching level is too unique.🤟

  • @RAJKARAN-Boss
    @RAJKARAN-Boss 2 місяці тому +2

    Please tell me which js course i can follow harry sir or hitesh sir

  • @maha33612
    @maha33612 9 місяців тому +1

    2:57:47
    date and time
    let myDate = new Date()
    console.log(myDate.toString());
    console.log(myDate.toISOString());
    console.log(myDate.toJSON());
    console.log(myDate.toTimeString());
    console.log(myDate.toLocaleDateString());
    console.log(myDate.toLocaleString());
    console.log(myDate.toUTCString());
    Output:
    Fri Dec 29 2023 10:00:48 GMT+0500 (Pakistan Standard Time)
    2023-12-29T05:00:48.292Z
    2023-12-29T05:00:48.292Z
    10:00:48 GMT+0500 (Pakistan Standard Time)
    12/29/2023
    12/29/2023, 10:00:48 AM
    Fri, 29 Dec 2023 05:00:48 GMT

  • @immensives147
    @immensives147 8 місяців тому +1

    4:03:00 undefined, is coming from the return type of the greeting() function, because that is not defined, and we are console.log()ing it 😅

  • @JustDipak
    @JustDipak 8 місяців тому +5

    I've seen many other js courses, but this course is by far the best on UA-cam. Thank you so much Hitesh Sir. 100 % worth it.

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

    I have completed this video today, I must say i have learnt a lot and really feel confident 😊

  • @anirudhcodes
    @anirudhcodes Рік тому +18

    Amazing sir!! 9 hours length and still there is a part 2 wow

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

      His javascript playlist is of 15 hours, and UA-cam limits 10hr videos only

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

      what? i am pretty sure harvard cs50 courses consists of over 24 hours long videos.

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

      @@raodevendrasingh yep just confirmed blockchain video is 31 hours long there is no limit of 10 hrs

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

      @@harshitkumar4964this limit is new update from youtube studio

    • @prateekghanghas4751
      @prateekghanghas4751 11 місяців тому

      ​@@harshitkumar4964wo alag level h

  • @HarsimranKaur-h2o
    @HarsimranKaur-h2o 22 дні тому +1

    literally the best video. Love the patience, the clarity, grateful !!

  • @haiderali0801
    @haiderali0801 6 місяців тому +1

    just one word for hitesh sir, Thankyou!

  • @AsimJutt-z1t
    @AsimJutt-z1t Рік тому +9

    Here is the revised text:
    Primitive Data Type (Call by Value) => 7 types: String, Number, Boolean, null, undefined, Symbol, BigInt.
    1) The data type of null is an object.
    2) The data type of String is a string.
    3) The data type of Boolean is Boolean.
    4) The data type of Undefined is undefined.
    5) The data type of Symbol is a symbol.
    6) The data type of Number is number.
    7) The data type of BigInt is BigInt. And the Data Types of Non primitive data type is Function object. Thank you so much sir I am grateful for your effort to give us the valuable source of learning.

  • @fahdzafar2768
    @fahdzafar2768 Рік тому +9

    Hi, your web series for JS is very helpful. Do you have any plans for Angular? It will be good if you can add series for Angular with practical real time example. Especially if you can teach regarding how to use readymade templates which we can use for our app. Thanks

  • @tahashahed2593
    @tahashahed2593 3 місяці тому +1

    let str = ' Hello, World! ';
    // 1. length: Returns the length of the string
    console.log(`Length of the string: ${str.length}`); // Output: 17
    // 2. trim(): Removes whitespace from both ends of the string
    console.log(`Trimmed string: "${str.trim()}"`); // Output: "Hello, World!"
    // 3. toUpperCase(): Converts the string to uppercase
    console.log(`Uppercase string: "${str.toUpperCase()}"`); // Output: " HELLO, WORLD! "
    // 4. toLowerCase(): Converts the string to lowercase
    console.log(`Lowercase string: "${str.toLowerCase()}"`); // Output: " hello, world! "
    // 5. indexOf(): Returns the index of the first occurrence of a substring
    console.log(`Index of 'o' in the string: ${str.indexOf('o')}`); // Output: 8
    // 6. lastIndexOf(): Returns the index of the last occurrence of a substring
    console.log(`Last index of 'o' in the string: ${str.lastIndexOf('o')}`); // Output: 15
    // 7. substring(): Returns a substring based on start and end indexes
    console.log(`Substring from index 3 to 8: "${str.substring(3, 8)}"`); // Output: "lo, W"
    // 8. slice(): Returns a portion of the string based on start and end indexes
    console.log(`Slice from index -5 to -1: "${str.slice(-5, -1)}"`); // Output: "orld"
    // 9. replace(): Replaces a substring with another substring
    console.log(`Replacing 'World' with 'Universe': "${str.replace('World', 'Universe')}"`); // Output: " Hello, Universe! "
    // 10. split(): Splits the string into an array of substrings based on a separator
    console.log(`Splitting the string by ',':`, str.split(',')); // Output: [" Hello", " World! "]
    // 11. charAt(): Returns the character at a specified index
    console.log(`Character at index 7: "${str.charAt(7)}"`); // Output: "W"
    // 12. charCodeAt(): Returns the Unicode value of the character at a specified index
    console.log(`Unicode value of character at index 7: ${str.charCodeAt(7)}`); // Output: 87
    // 13. concat(): Concatenates one or more strings
    let str2 = ' Have a nice day!';
    console.log(`Concatenated string: "${str.concat(str2)}"`); // Output: " Hello, World! Have a nice day!"
    // 14. includes(): Checks if a string contains another substring
    console.log(`Does the string include 'Hello'? ${str.includes('Hello')}`); // Output: true
    // 15. startsWith(): Checks if a string starts with another substring
    console.log(`Does the string start with ' '? ${str.startsWith(' ')}`); // Output: true
    // 16. endsWith(): Checks if a string ends with another substring
    console.log(`Does the string end with ' '? ${str.endsWith(' ')}`); // Output: true

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

    Only OG viewers will recognize the grey t-shirt, setup and the background! 🤩

  • @timepasi
    @timepasi Місяць тому +1

    javaScript is a dynamically typed language it means that the datatype of the variable is determined during the run time

  • @monuchauhan9327
    @monuchauhan9327 2 місяці тому +2

    02:52:00
    Sir says watch at 1.5x for wrapping up.
    Me watching whole video at 2X 😀

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

    Hello sir , what should I do as you just completed a js series this one shot or that series ? What's the difference??

  • @AmitSingh-vn7dd
    @AmitSingh-vn7dd Рік тому +4

    Bestest Javascript tutorial video in Hindi on UA-cam, accessible for all... better than most of the paid courses... please upload part 2 also... You are an excellent teacher Hitesh.

  • @BilalAli-un7dw
    @BilalAli-un7dw 4 місяці тому +1

    I'm Pakistani and your videos are very helpful 🎉

  • @priyadarshi5730
    @priyadarshi5730 5 місяців тому +2

    Just completed the whole video and it took me 3 days to complete.....BTW this is one of the proper arranged video of JavaScript.......Will start Part 2 in a moment ;)

  • @tamimtamim1883
    @tamimtamim1883 3 місяці тому +1

    Need Java Spring boot full course❤❤❤❤

  • @abhishekpandey8514
    @abhishekpandey8514 2 місяці тому +1

    Thank You Bhaiya this course is a Gem for Everyone ❤❤❤❤

  • @adityachitransh2824
    @adityachitransh2824 4 місяці тому +1

    doubt if in an string there comes shame character 2 times in different position so how we use IndexOf() function

  • @imanit786
    @imanit786 2 місяці тому +2

    Sir Ap ne bhut mahnat ki ha.Zabardast tariqe se bataya ha. ma n javascript full parha ha lekin pir bhi aisa lagta ha ke kuch nahi ata. React ma b kam kiya ha lekin projects se dar lagta ha. sb basic basic ata ha.
    i hope apki series i got confidence in coding.

  • @Kunaltwts
    @Kunaltwts 7 місяців тому +1

    Start Date - 14 Feburary 2024 (evening) (2:06:33)

  • @minatiroy9320
    @minatiroy9320 Місяць тому +1

    As per 21:38
    Mein jab github par aise steps flow kar raha hu mera show all definition kuch vi nehi araha hain matlab sirf do option a raha hain (modify your active configuration and create a new configuration) mein kya karu anyone please can help?

  • @thehmm5224
    @thehmm5224 8 місяців тому +1

    thankyou sir for the simplest explaination

  • @AbhishekKumar-cd4gg
    @AbhishekKumar-cd4gg 5 місяців тому +1

    mere hisaab seh iss vedio haar ek section ke liye allag like button hon achaiye tha jaise jaise hum ageh barah rahe hai aur acha lag rah par like ek hii baar kar sakteh hai

  • @anuragrathore7384
    @anuragrathore7384 7 місяців тому +1

    Thanks sir for this quality content ❤
    Best javascript video on youtube.

  • @FebinAugustine
    @FebinAugustine 6 місяців тому +1

    Mmmm... Now it's clear...!! Thanks man. Yes am talking about arguments vs parameters and scope...! You are right there is a way to teach which is mostly absent in the scope of UA-cam 😉

  • @uvkiclasses2539
    @uvkiclasses2539 9 місяців тому +1

    amazing CONTENT (looking forward to learn from You sir) ...Thank You so much sir

  • @DSA_Lover
    @DSA_Lover 6 місяців тому +1

    03:11 Javascript is a popular programming language
    1:40:53 An overview of JavaScript in Hindi
    2:26:14 Javascript basics in Hindi
    3:54:26 Javascript basics and syntax in Hindi
    4:48:18 Introduction to JavaScript basics in Hindi
    6:04:59 Javascript overview in Hindi
    7:03:19 JavaScript is a popular programming language for web development.
    7:58:10 JavaScript is a popular programming language.
    Crafted by Merlin AI.

  • @ayanmaity9683
    @ayanmaity9683 7 місяців тому +1

    Many many thanks sir . Thank you so much . such a beautiful series. Learned many things from you sir . 💕💕💕💕