Reference Types: Objects && Arrays in JS || JavaScript Series 2024

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 พ.ย. 2024

ความคิดเห็น • 246

  • @suhaib_nisar
    @suhaib_nisar 6 หลายเดือนก่อน +18

    Respect for all the teachers and also Love Babbar Sir ❤❤

  • @AkashYadav-di6kd
    @AkashYadav-di6kd 6 หลายเดือนก่อน +25

    sort() in JS
    firstly, sort() methods sorts the element on the basis of there Unicode values and not by there face value.
    That's why we will get wrong answer on sorting more than one digit number. (try it yourself).
    If we want to sort the number accurately then we need to pass a compare function as an argument in sort() method.
    Like this:
    arr.sort( (a, b) => return a-b );
    here a is the first value and b is the second value.
    if a-b = +ve then it means a > b then we need to exchange the position of a with b so the smaller number comes before larger.
    if a - b = -ve then a < b then it is in correct order. Move to other numbers for check.
    if a - b = 0 then a == b then it is also in correct order.
    Now, we need to sort the arr in descending order.
    there are two ways:
    1. arr.sort( (a, b) => return a - b ).reverse(); // by reversing the sorted array.
    2. arr.sort( (a, b) => return b-a ); // by reversing the logic // here also a is first number and b is second number
    if b-a = +ve then it means b > a then we need to exchange the position of b with a so the larger comes before smaller.
    if b-a = -ve then it means b < a then it is in correct position.
    if b-a = 0 then it means b == a then it is also in correct order.
    I hope you got it. if any query ask in comment.
    Thank you very much for reading it.

    • @Ritika-we6sl
      @Ritika-we6sl 4 หลายเดือนก่อน

      Thanks❤

    • @abhaysinghUGI
      @abhaysinghUGI หลายเดือนก่อน

      Bhai tumhe ab CODEHELP ki goodies mil jayegi😂😂😂.

    • @abhaysinghUGI
      @abhaysinghUGI หลายเดือนก่อน +1

      Bhai ab tumhe codehelp ki goodies mil jayegi😂😂😂😂.

    • @CodePranshu
      @CodePranshu หลายเดือนก่อน

      Impressive and thanks ❤

  • @abhisheksingh_26
    @abhisheksingh_26 6 หลายเดือนก่อน +8

    Super lecture bhaiya bas bahiya aise hi consistency bna kar complete kr dijiye❤🙏

  • @DipsOfficial802
    @DipsOfficial802 6 หลายเดือนก่อน +7

    Crystal Clear Understood🔥🔥

  • @AmanKumar-io3ev
    @AmanKumar-io3ev 18 วันที่ผ่านมา +2

    //sorting in ascending and descending order
    let arr=[2,3,5,3,4,7,32,6,1];
    arr.sort();//ascending order
    console.log(arr);
    arr.sort((a,b)=>b-a);//descending order
    console.log(arr);

  • @gorityalasanthosh9840
    @gorityalasanthosh9840 3 หลายเดือนก่อน +4

    Bro reached new topic ,i request please dont stop this series
    I have consistently completed html,css and now this js array

  • @samwarrior7009
    @samwarrior7009 23 วันที่ผ่านมา +2

    Sorr descending:
    let numbers = [10, 5, 20, 15];
    numbers.sort(function(a, b) {
    return b - a;
    });
    console.log(numbers); // Output: [20, 15, 10, 5]
    For words:
    let words = ["apple", "banana", "grape", "orange"];
    words.sort(function(a, b) {
    return b.localeCompare(a);
    });
    console.log(words); // Output: ["orange", "grape", "banana", "apple"]
    Find:
    let numbers = [10, 20, 30, 40, 50];
    let result = numbers.find(function(num) {
    return num > 25;
    });
    console.log(result); // Output: 30 (the first number greater than 25)
    ForEach:
    let numbers = [1, 2, 3, 4];
    numbers.forEach(function(num) {
    console.log(num);
    });
    // Output: 1 2 3 4
    For..in:
    let person = { name: "Alice", age: 25, city: "New York" };
    for (let key in person) {
    console.log(key + ": " + person[key]);
    }
    // Output:
    // name: Alice
    // age: 25
    // city: New York
    For..of:
    let string = "hello";
    for (let char of string) {
    console.log(char);
    }
    // Output: h e l l o

  • @sokmanali3815
    @sokmanali3815 6 หลายเดือนก่อน +5

    37:56 arr.sort(function(a, b){return b-a})

  • @shijinnambiar9
    @shijinnambiar9 6 หลายเดือนก่อน +3

    What a content bhaiya !Thanks for all this.

  • @mohitsinghal1206
    @mohitsinghal1206 5 หลายเดือนก่อน +5

    sort in inc & dec order
    let arr = [4, 1, 2, 9, 0];
    let ans = arr.sort();
    console.log(ans);
    let ans2=arr.sort((a,b)=>b-a)
    console.log(ans2);

  • @nidhisingh14332
    @nidhisingh14332 5 หลายเดือนก่อน +6

    For the decending order
    1. Use sort() function
    2. Then use reverse() funstion

    • @mikey_beats
      @mikey_beats หลายเดือนก่อน

      🤣🤣🤣🤣🤣🤣

  • @denishmurawala8238
    @denishmurawala8238 10 วันที่ผ่านมา +1

    clear

  • @devshah7239
    @devshah7239 2 หลายเดือนก่อน +1

    sort() in JS
    for sorting in descending order we use "compareFunction" and in compare function
    Syntax -: arr.sort((num1, num2) =>{return b-a});

  • @neeru_05
    @neeru_05 6 หลายเดือนก่อน +5

    Thank you so much bhaiya ✨
    I was just waiting for the next video 👍

  • @113abhimistry8
    @113abhimistry8 3 หลายเดือนก่อน

    sir samaj aya 😃

  • @aspirant04
    @aspirant04 5 หลายเดือนก่อน +2

    Great lecture..

  • @jaishreeram1444
    @jaishreeram1444 หลายเดือนก่อน

    you are the best mentor of millions of student and I am the student of supreme 3.O. thanks you bhaiya

  • @somyaagarwal1540
    @somyaagarwal1540 6 หลายเดือนก่อน +1

    amazing lecture bhaiya❤

  • @AmanKumar-io3ev
    @AmanKumar-io3ev 18 วันที่ผ่านมา

    for sorting in descending form we have to make a comparator let arr=[5,3,2,1]

  • @circlelikesphere7273
    @circlelikesphere7273 5 หลายเดือนก่อน

    best teacher ho app bhaiya sb smj m aajata h appka btaya hua

  • @aasthashivhare609
    @aasthashivhare609 หลายเดือนก่อน

    thankyouu bhaiya please series continue rkhna

  • @ShivamJhaYouTube
    @ShivamJhaYouTube 6 หลายเดือนก่อน +1

    Thanks For JS Lecture ❤❤

  • @abhishekmathur1042
    @abhishekmathur1042 6 หลายเดือนก่อน

    Mazza aa gaya itney achein se function concept explain karney k liye thanl you

  • @skandpandeyofficial
    @skandpandeyofficial 3 หลายเดือนก่อน

    Samajh aa gaya bhaiya, dosto go for it is good infinity

  • @TanushkaKashyap-cf7sd
    @TanushkaKashyap-cf7sd 5 หลายเดือนก่อน

    bhai yrr kya sahi padhate ho tum!

  • @nidafatima380
    @nidafatima380 2 หลายเดือนก่อน +1

    bhaiya it was super lecture

  • @UmangRajput-y9q
    @UmangRajput-y9q หลายเดือนก่อน +1

    bhaiya ,kabhi kabhi class ki speed rajdhani express jaisi ho jati hai but samjh bhi a jata hai😇😅

  • @piyushkumar4598
    @piyushkumar4598 4 หลายเดือนก่อน +1

    What a nice content. Love it 😍

  • @Ghostdevil-1212
    @Ghostdevil-1212 55 นาทีที่ผ่านมา

    let arr = [10, 20, 30];
    arr.sort((a, b) => b - a); // Sort in descending order
    console.log(arr);

  • @AkashYadav-di6kd
    @AkashYadav-di6kd 6 หลายเดือนก่อน +1

    samajh me aagaya bhaiya.

  • @swatijaiswal6020
    @swatijaiswal6020 5 หลายเดือนก่อน

    Super teaching method ❤

  • @hishub9377
    @hishub9377 หลายเดือนก่อน

    sort array in descending order 38:00
    let arr = [9,5,4,3,1,7,6];
    arr.sort();
    arr.reverse();
    console.log(arr);

  • @naveennayak6033
    @naveennayak6033 2 หลายเดือนก่อน

    Awesum lecture brother

  • @muhammadnabimuhammadnabi2732
    @muhammadnabimuhammadnabi2732 หลายเดือนก่อน

    Amazing sir

  • @PanditJi-j8t
    @PanditJi-j8t หลายเดือนก่อน

    Sort Method by Descending Order
    let arr = [1,89,76,90,472,487,920]
    let descOrder = arr.sort((a,b) =>{
    return b - a;
    })
    console.log(descOrder);

  • @scientistakasha7293
    @scientistakasha7293 3 หลายเดือนก่อน

    Samaj aagya sara Shurkiyaa

  • @gaddu2885
    @gaddu2885 4 หลายเดือนก่อน

    understtood everything
    nice lecture

  • @sanyamhingar8780
    @sanyamhingar8780 หลายเดือนก่อน

    javascript me array me diiferent types ke data bhi support krte h?

  • @SPIDY_GAMINGYT
    @SPIDY_GAMINGYT 4 หลายเดือนก่อน

    Great lecture❤❤

  • @mushahidhusain8400
    @mushahidhusain8400 6 หลายเดือนก่อน +1

    love bhai you are video consistently in all doubt clear js

  • @jacktauson3724
    @jacktauson3724 หลายเดือนก่อน

    Thank You Sir ❤❤one of the best tutor on youtube

  • @balpreetsinghchahal2013
    @balpreetsinghchahal2013 5 หลายเดือนก่อน

    bahoot ache se smh aaya hai bhai

  • @SilentNight_Tour
    @SilentNight_Tour 6 หลายเดือนก่อน +2

    Love babar bhaiya Eska bad please Devops ka bhi course start kr skta hain kya ap

  • @maheshgariya5096
    @maheshgariya5096 หลายเดือนก่อน

    method to sort an array in descending order is let arr = [7,8,9,4,5,6,1,3,2]
    arr.sort ( ( a , b ) => b - a );
    console.log(arr)

  • @balpreetsinghchahal2013
    @balpreetsinghchahal2013 5 หลายเดือนก่อน

    always have a good learning exp.

  • @rakshakkumar5383
    @rakshakkumar5383 5 หลายเดือนก่อน

    understood bhaiya, thanks

  • @pranayjaunjal4832
    @pranayjaunjal4832 6 หลายเดือนก่อน

    Clear Understood

  • @nithenbains
    @nithenbains 6 หลายเดือนก่อน +1

    best course😎😎😎

  • @himanshutiwari169
    @himanshutiwari169 3 หลายเดือนก่อน

    yes bhaiya aa gaya

  • @adityavishwakarma4835
    @adityavishwakarma4835 5 หลายเดือนก่อน

    nicely explained 👍

  • @royalshorts1527
    @royalshorts1527 6 หลายเดือนก่อน +1

    I subscribed the 3.0 and waiting for the 25 th April first class 🎉🎉🎉

    • @vasudev3744
      @vasudev3744 6 หลายเดือนก่อน +1

      ok

  • @CodewithKing360
    @CodewithKing360 6 หลายเดือนก่อน

    nice1000%good containt

  • @deepanjalirajbhar5790
    @deepanjalirajbhar5790 4 หลายเดือนก่อน

    best course

  • @krishnasaroj279
    @krishnasaroj279 6 หลายเดือนก่อน

    samaj gya bhaiya, thank u :)

  • @aniruddhatrivedi-xt8ew
    @aniruddhatrivedi-xt8ew 6 หลายเดือนก่อน +2

    There is one suggestion from me. You should give some questions for practice

    • @CodeHelp
      @CodeHelp  6 หลายเดือนก่อน +3

      Let me complete basics uske baad will do

  • @abhishekchahar2916
    @abhishekchahar2916 หลายเดือนก่อน

    maza aa gya bhaiya

  • @bandanabhushan5261
    @bandanabhushan5261 6 หลายเดือนก่อน

    great lecture

  • @sahmedali547
    @sahmedali547 6 หลายเดือนก่อน

    Babbar bhaiya kindly kuch practice ky liay resources btayn tky class ky baad code kr sakyn any Exercises for practice please

  • @Ayeshayadav-r2y
    @Ayeshayadav-r2y 4 หลายเดือนก่อน

    samj aa gya bhaiya 🙂

  • @balpreetsinghchahal2013
    @balpreetsinghchahal2013 5 หลายเดือนก่อน

    awesome content bro

  • @sudhanshutiwari5378
    @sudhanshutiwari5378 6 หลายเดือนก่อน

    bhaiya i have a doubt that without compare fuction how .sort( ) method works on number array [because it can sort only string value properly]
    Baaki sab best hai😇😇

  • @tusharbhilare8377
    @tusharbhilare8377 13 วันที่ผ่านมา

    Thank you Bhaiyyaa❤❤

  • @satyamrathore7524
    @satyamrathore7524 6 หลายเดือนก่อน

    amazing content 🔥🔥🔥

  • @someshsunar4166
    @someshsunar4166 6 หลายเดือนก่อน

    well explained

  • @HRUSHIKESH_83
    @HRUSHIKESH_83 6 หลายเดือนก่อน

    Samaz gaya Sir

  • @someshsunar4166
    @someshsunar4166 6 หลายเดือนก่อน

    great content

  • @someshsunar4166
    @someshsunar4166 6 หลายเดือนก่อน

    great work

  • @RajivKumar-zw8tq
    @RajivKumar-zw8tq 6 หลายเดือนก่อน

    Mja aa gya love bhaiya... ❤️❤️

  • @scientistakasha7293
    @scientistakasha7293 3 หลายเดือนก่อน

    37:57
    Ascending:
    let red_array=[11,3,2,8,6];
    red_array.sort( (a,b)/*parameters*/=>
    {
    return a-b;/*if result is positive 1st number will be placed after 2nd*/
    }
    )
    console.log("Ascending Order:",red_array);
    Descending:
    red_array.sort( (p,q)/*parameters*/=>
    q-p /*if result is positive 1st number (p) will be placed after*/
    );
    console.log("Descending Order:",red_array);

  • @tarunpatil001
    @tarunpatil001 6 หลายเดือนก่อน +1

    keep it up bhaiya !!

  • @1mstudymotivation372
    @1mstudymotivation372 6 หลายเดือนก่อน

    What a consistency ❤❤

  • @AkashYadav-di6kd
    @AkashYadav-di6kd 6 หลายเดือนก่อน

    Thank you very much, bhaiya

  • @abhaysinghUGI
    @abhaysinghUGI หลายเดือนก่อน +1

    30:33 😂 ye shi tha error ko btane ka 😂😂😂.

  • @ArunChauhan-d2v
    @ArunChauhan-d2v 5 หลายเดือนก่อน

    by using reverse method we can print descending order

  • @ritikasingh5443
    @ritikasingh5443 หลายเดือนก่อน

    arr.sort(); // for ascending
    arr.sort().reverse(); // for descending

  • @VishaljangidJngid
    @VishaljangidJngid 6 หลายเดือนก่อน

    better than apna collge ❤❤❤❤❤❤

  • @aimanafaq2960
    @aimanafaq2960 6 หลายเดือนก่อน

    Thanks sir g always happy

  • @YourCodeVerse
    @YourCodeVerse 11 วันที่ผ่านมา

    smjh aagya

  • @KundanKumar-mp9lj
    @KundanKumar-mp9lj 3 วันที่ผ่านมา

    thank you sir . i did fill better your class, and your class is helpfull for me

  • @SandeepKumar-eh8qh
    @SandeepKumar-eh8qh 5 หลายเดือนก่อน

    Bhiaya❤❤❤❤❤❤Sam smjh me aagya

    • @saurabh0677
      @saurabh0677 5 หลายเดือนก่อน

      Explain

  • @KARTIKPAL-u2d
    @KARTIKPAL-u2d 4 หลายเดือนก่อน

    bhaiya mazza aagya naya lecture lao web dev ka

  • @techminatiofficial
    @techminatiofficial 6 หลายเดือนก่อน

    understood ++;
    bhaiya waiting for next video

  • @balpreetsinghchahal2013
    @balpreetsinghchahal2013 5 หลายเดือนก่อน

    aise hi aur videos banate rho

  • @1mstudymotivation372
    @1mstudymotivation372 6 หลายเดือนก่อน

    Wow bhaiya you are great ❤❤❤❤

  • @anshuman1021
    @anshuman1021 6 หลายเดือนก่อน

    BHAIYA THANKS FOR VISITING NIT KKR TODAY ❤

  • @indrajitgithubsom
    @indrajitgithubsom 3 หลายเดือนก่อน

    //Find()
    let arrFind= [23,43,65,87,67,85,67];
    console.log(arrFind.find((value)=>{
    return value > 50;
    }));
    The find() method returns the value of the first element that pass the condition.

  • @prateekshrivastava2802
    @prateekshrivastava2802 6 หลายเดือนก่อน

    Thanks!!

  • @tarunkumar8000
    @tarunkumar8000 3 หลายเดือนก่อน

    const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9];
    const dec = (a , b) => {
    return b-a;
    };
    const ans = arr.sort(dec);
    console.log(ans);

  • @AmanSingh-pf4cc
    @AmanSingh-pf4cc หลายเดือนก่อน

    let arr= [1,9,3,2,5,6];
    console.log(arr.sort());
    console.log(arr.reverse());

  • @utkarshsingh1445
    @utkarshsingh1445 2 หลายเดือนก่อน

    bhaiya aur bhi lectures hain kya JS ke..iske baad

  • @RajaShahofficial
    @RajaShahofficial 5 หลายเดือนก่อน

    Bhaiya good video 😅😅😅❤

  • @Visheshsainiii
    @Visheshsainiii 3 หลายเดือนก่อน

    hard hai pr aap bhaut clear padha rahe ho with time aasan ho jye ga

  • @SparshKashyap-wt2fx
    @SparshKashyap-wt2fx หลายเดือนก่อน

    Maza a gaya sir 🙏🏻🙏🏻

  • @AkashKushwaha-e8r
    @AkashKushwaha-e8r 10 วันที่ผ่านมา

    Best video

  • @spandanaveeresh8966
    @spandanaveeresh8966 6 หลายเดือนก่อน

    please provide DSA with java course .

  • @aashwinkumar2242
    @aashwinkumar2242 2 หลายเดือนก่อน

    GREAT

  • @ziarehman5558
    @ziarehman5558 6 หลายเดือนก่อน

    Hi respected sir , kindly create some web development projects using mern stack beginner to advance level

  • @TheVishu-fq7ws
    @TheVishu-fq7ws 6 หลายเดือนก่อน

    The way you explain "reduce method" 🤌❤

  • @Chetna-bz8zz
    @Chetna-bz8zz 6 หลายเดือนก่อน

    Sir please complete this series 🙏🏻

  • @Pramodkumar-fn9cj
    @Pramodkumar-fn9cj 4 หลายเดือนก่อน

    wao bhiya maja aa gya 🥰🥰🥰🥰🥰🥰😍